mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
543 B
HTML
26 lines
543 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.cssFloat = "left";
|
||
|
document.body.offsetWidth;
|
||
|
n.style.cssFloat = "";
|
||
|
document.body.offsetWidth;
|
||
|
}
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="doTest()">
|
||
|
<table border="5">
|
||
|
<tr>
|
||
|
<td id="n">TD</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|