Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
3 <head>
4 <script>
6 function boom()
7 {
8 var doom = document.getElementById("doom");
9 doom.parentNode.removeChild(doom);
10 document.documentElement.removeAttribute("class");
11 }
13 </script>
14 </head>
16 <body onload="setTimeout(boom, 30);">
17 <div>
18 <p id="doom">This paragraph disappears.</p>
19 <math xmlns='http://www.w3.org/1998/Math/MathML' display='block'><msub><mi>y</mi><mn>0</mn><frameset xmlns="http://www.w3.org/1999/xhtml" /></msub></math>
20 </div>
21 </body>
23 </html>