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">
2 <head>
3 <script>
5 var HTML_NS = "http://www.w3.org/1999/xhtml";
7 function boom()
8 {
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");
20 }
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>