Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
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");
16 }
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>