mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
544 B
HTML
21 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
var t = document.getElementById("t");
|
|
for (var i = 0; i < 10; ++i) {
|
|
document.body.offsetWidth;
|
|
t.style.display = "table-caption";
|
|
document.body.offsetWidth;
|
|
t.style.display = "";
|
|
}
|
|
document.documentElement.className = '';
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest()">
|
|
<table border="5"><tbody><tr><td id="t">Some text</td></tr></tbody></table>
|
|
</body>
|
|
</html>
|