blob: 82b5a26a8ac420888c896e88a65344d17ce7ec17 (
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
35
|
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>
<script>
<![CDATA[
var div;
function boo()
{
var newSpan = document.createElement('span');
div = document.getElementById('div');
var newScript = document.createElement('script');
var nt = document.createTextNode("document.body.removeChild(div);");
newScript.appendChild(nt);
newSpan.appendChild(newScript);
div.appendChild(newSpan);
document.documentElement.removeAttribute("class");
}
]]>
</script>
</head>
<body onload="setTimeout(boo, 30);">
<div id="div"></div>
</body>
</html>
|