layout/mathml/crashtests/366012-1.xhtml

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

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>

mercurial