blob: a604990cf6da7366156fc65635c6a072bdb01f3c (
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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
<![CDATA[
function boom()
{
var dE = document.documentElement;
var newSpan = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
document.addEventListener("DOMNodeRemoved", whee);
document.removeChild(dE);
document.removeEventListener("DOMNodeRemoved", whee);
function whee()
{
document.removeEventListener("DOMNodeRemoved", whee);
document.insertBefore(newSpan, dE);
}
}
window.addEventListener("load", boom);
]]>
</script>
</head>
<body>
<p>This text will disappear. There should be no assertions.</p>
</body>
</html>
|