Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / mathml / crashtests / 307826-1.xhtml
blob879b426e1739eb7fba053b7e1709d0810aea2a38
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
3 <head>
5 <title>Testcase for MathML crash</title>
7 <script><![CDATA[
9 function boom() {
10 var div = document.getElementById("div");
11 var mi = document.getElementById("mi");
12 mi.appendChild(div);
13 mi.removeChild(div);
15 document.documentElement.removeAttribute("class");
18 ]]></script>
20 </head>
23 <body onload="setTimeout(boom, 30);">
25 <div style="float: right;" id="div">Floated div</div>
27 <math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><mi id="mi">mi</mi></math>
29 </body>
30 </html>