mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
17 lines
405 B
HTML
17 lines
405 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<script type="text/javascript">
|
|
function boom() {
|
|
select = document.createElementNS("http://www.w3.org/1999/xhtml", "select");
|
|
text = document.body.childNodes[0];
|
|
select.setAttribute("onDOMSubtreeModified", "text.parentNode.removeChild(text);");
|
|
select.appendChild(text);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom()">
|
|
|
|
</body>
|
|
</html>
|