blob: 907ddddc15724f64628c1785242619da779a59e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<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>
|