mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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> |