Bug 1494333 - index crons just like artifacts r=Callek
[gecko.git] / dom / html / crashtests / 324918-1.xhtml
blob921714cff3cd745c04144d7e4e861af0e27108ca
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script>
6 function init()
7 {
8 var sel = document.getElementById("sel");
9 var div = document.getElementById("div");
10 var newo = document.createElementNS("http://www.w3.org/1999/xhtml", "option");
12 sel.appendChild(div);
13 div.appendChild(newo);
14 sel.removeChild(div);
17 </script>
18 </head>
19 <body onload="init();">
21 <div id="div"><option></option></div>
23 <select id="sel"></select>
25 </body>
26 </html>