layout/mathml/crashtests/375562-1.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

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>

mercurial