mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
31 lines
414 B
HTML
31 lines
414 B
HTML
<html class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function foo()
|
|
{
|
|
setTimeout(bar, 30);
|
|
}
|
|
|
|
function bar()
|
|
{
|
|
document.getElementById("TT").style.position = "absolute";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="foo();">
|
|
|
|
|
|
<div id="TT"><div style="position: fixed;"><div style="display: -moz-box;"><div style="float: left;"></div></div></div></div>
|
|
|
|
</body>
|
|
|
|
</html> |