Bug 1878930 - s/RawBuffer/Span/: UniformData. r=gfx-reviewers,lsalzman
[gecko.git] / dom / html / crashtests / 613027.html
bloba866860f106075381c26e4fe19b0947bffc58aec
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 var a = document.createElementNS("http://www.w3.org/1999/xhtml", "fieldset");
9 var b = document.createElementNS("http://www.w3.org/1999/xhtml", "legend");
10 var c = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
12 a.appendChild(b);
13 a.appendChild(c);
14 a.removeChild(b);
15 c.expandoQ = a;
18 </script>
19 </head>
20 <body onload="boom();"></body>
21 </html>