blob: 9d0d0826164fc835b5241187456159a3d70dac54 (
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
|
<html class="reftest-wait">
<head>
<script type="text/javascript">
function boom()
{
var q1 = document.getElementById("q1");
var q2 = document.getElementById("q2");
q1.style.cssFloat = "right"
q2.style.cssFloat = "right"
setTimeout(function(){
q1.style.cssFloat = "none";
document.documentElement.removeAttribute("class");
}, 30);
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<b id="q1">AAA</b>
<b id="q2">BBB</b>
</body>
</html>
|