layout/base/crashtests/772306.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <script>
     6 function boom()
     7 {
     8     var allNodes = [];
     9     allNodes[5] = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    10     allNodes[5].style.setProperty("-moz-column-width", "200px", "");
    11     allNodes[5].style.setProperty("height", "2em", "");
    12     allNodes[7] = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    13     allNodes[7].style.setProperty("float", "left", "");
    14     allNodes[30] = document.createElementNS("http://www.w3.org/1998/Math/MathML", "munder");
    15     (allNodes[7] || allNodes[5] || document.body).appendChild(allNodes[30]);
    16     (allNodes[5] || document.body).appendChild(allNodes[7]);
    17     allNodes[17] = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    18     allNodes[17].style.setProperty("display", "inline-block", "");
    19     (allNodes[5] || document.body).appendChild(allNodes[17]);
    20     allNodes[20] = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    21     (allNodes[5] || document.body).appendChild(allNodes[20]);
    22     allNodes[23] = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    23     allNodes[23].style.setProperty("float", "left", "");
    24     allNodes[25] = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    25     allNodes[25].style.setProperty("display", "inline-block", "");
    26     (allNodes[23] || allNodes[5] || document.body).appendChild(allNodes[25]);
    27     (allNodes[5] || document.body).appendChild(allNodes[23]);
    28     (document.body).appendChild(allNodes[5]);
    29     document.documentElement.offsetHeight;
    30     allNodes[34] = document.createElementNS("http://www.w3.org/1998/Math/MathML", 'maligngroup');
    31     allNodes[17].appendChild(allNodes[34]);
    32     document.documentElement.offsetHeight;
    33     allNodes[30].setAttribute('accentunder', "false");
    34 }
    36 </script>
    37 </head>
    39 <body onload="boom();"></body>
    40 </html>

mercurial