Bug 1494333 - index crons just like artifacts r=Callek
[gecko.git] / dom / html / crashtests / 673853.html
blob1325fa9ed6b27902872d7e8adfc03af5f4229fbb
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 var otherDoc = document.implementation.createDocument('', '', null);
9 var input = otherDoc.createElementNS("http://www.w3.org/1999/xhtml", "input");
10 var form = otherDoc.createElementNS("http://www.w3.org/1999/xhtml", "form");
11 input.setAttributeNS(null, "form", "x");
12 form.setAttributeNS(null, "id", "x");
13 input.appendChild(form);
14 otherDoc.appendChild(input);
17 </script>
18 </head>
19 <body onload="boom();"></body>
20 </html>