Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / mathml / crashtests / 375562-1.xhtml
blob491b313597b5eeae597e0c258dfbc8b5ce3b2618
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head>
3 <script>
5 var HTML_NS = "http://www.w3.org/1999/xhtml";
7 function boom()
9 var a = document.getElementById("a");
10 var plus = document.getElementById("plus");
11 var frameset = document.createElementNS(HTML_NS, "frameset");
13 document.body.style.width = "300px";
15 a.parentNode.removeChild(a);
17 plus.appendChild(frameset);
19 document.documentElement.removeAttribute("class");
22 </script>
23 </head>
25 <body onload="setTimeout(boom, 30);">
27 <div><math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
28 <msup>
29 <mi id="a">a</mi>
30 <mo id="plus">+</mo>
31 <mi>b</mi>
32 <mi>c</mi>
33 </msup>
34 </math></div>
36 </body>
38 </html>