blob: eac3eeb57a2253bca18829ad746f33c03c814f6f (
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
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
var zz = document.getElementById("d").childNodes[0];
zz.parentNode.removeChild(zz);
var r = document.createRange();
r.setStart(zz, 0);
r.setEnd(zz, 0);
try {
r.insertNode(document.createTextNode('5'));
} catch (e) {
}
}
</script>
</head>
<body onload="boom()">
<div id="d">3</div>
</body>
</html>
|