This commit is contained in:
jruderman@hmc.edu 2007-12-16 22:37:33 -08:00
Родитель 665583641e
Коммит d7625d447e
3 изменённых файлов: 34 добавлений и 0 удалений

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

@ -0,0 +1,20 @@
<html>
<head>
<script>
function boom()
{
var col = document.createElement("col");
col.setAttribute('span', 2);
document.body.appendChild(col);
col.removeAttribute('span');
document.body.offsetHeight;
document.body.removeChild(col);
}
</script>
</head>
<body onload="boom();"></body>
</html>

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

@ -0,0 +1,12 @@
<html>
<head>
</head>
<body>
<table border="1">
<tr>
<td>x<div style="margin: 0 100%;"></div></td>
<td width="8%">y</td>
</tr>
</table>
</body>
</html>

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

@ -29,3 +29,5 @@ load 391901-1.html
load 397448-1.html
load 398157-1.xhtml
load 399209-1.xhtml
load 403249-1.html
load 403579-1.html