Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
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>