This commit is contained in:
Jesse Ruderman 2014-10-24 17:08:23 +00:00
Родитель 4126bb10d5
Коммит 7e1981b7ee
2 изменённых файлов: 35 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,34 @@
<html xmlns="http://www.w3.org/1999/xhtml" style="white-space: pre;">
<head>
<style>
#f:first-letter { }
#g:first-letter { float:left; }
</style>
<script>
function boom(id)
{
var text = document.getElementById(id).firstChild;
text.splitText(2);
document.documentElement.offsetHeight;
text.splitText(0);
}
</script>
</head>
<body onload="boom('f');boom('g');">
<div id="f">
X</div>
<div id="g">
X</div>
</body>
</html>

Просмотреть файл

@ -501,6 +501,7 @@ load 810726.html
load 812879.html
load 812879-2.html
load 814995.html
load 822910.xhtml
load 825810-1.html
load 825810-2.html
load 827076.html