tenfourfox/layout/reftests/table-anonymous-boxes/339388-1b.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

26 lines
547 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function doTest() {
var n = document.getElementById("n");
for (var i = 0; i < 5; ++i) {
n.style.position = "absolute";
document.body.offsetWidth;
n.style.position = "";
document.body.offsetWidth;
}
document.documentElement.className = "";
}
</script>
</head>
<body onload="doTest()">
<table border="5">
<tr>
<td id="n">TD</td>
</tr>
</table>
</body>
</html>