blob: 04cbeacf198258ebc2c2af0e569a4ca0fa07ee10 (
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
34
|
<html class="reftest-wait">
<head>
<script>
function boom()
{
var d = document.getElementById("d");
d.parentNode.removeChild(d);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<div id="d">
<div style="float: right">
<table border="1">
<tr>
<td style="display: -moz-groupbox"><img></td>
</tr>
<tr style="position: absolute">
<td>TD2</td>
</tr>
</table>
</div>
</div>
</body>
</html>
|