blob: 84301461f76c29373dc65898ff1378f7eb8c58c1 (
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
32
33
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("b").style.overflow = "hidden";
setTimeout(boom2, 30);
}
function boom2()
{
document.getElementById("g").style.display = "none";
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">
<div style="float: left;">
<div id="b" style="display: -moz-box; border: 1px solid black;"><img width="16" height="16" src="../../../testing/crashtest/images/tree.gif"/></div>
<div style="position: fixed;"></div>
</div>
<div id="g" style="display: inline"><div></div></div>
</body>
</html>
|