Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/html/crashtests/crashtests.list
<head>
<script>
function init()
{
var sel = document.getElementById("sel");
var div = document.getElementById("div");
sel.appendChild(div);
div.appendChild(newo);
sel.removeChild(div);
}
</script>
</head>
<body onload="init();">
<div id="div"><option></option></div>
<select id="sel"></select>
</body>
</html>