layout/reftests/bugs/363370-1.html

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 class="reftest-wait"><head>
     2 <title>Testcase bug 363370 - [reflow branch] Crash [@ nsTArray_base::ShiftData] with testcase that appends table cells</title>
     3 </head>
     4 <body>
     6 <table border>
     7 <thead id="b"><tr><td rowspan="3">td</td></tr></thead>
     8 <tbody colspan="1" id="f"><tr></tr></tbody></table>
    10 <script>
    11 function doe()  {
    14 var x=document.createElement('td');
    15 var text = document.createTextNode("td");
    16 x.appendChild(text);
    18 document.getElementById('b').appendChild(x);
    21 var y=document.createElement('td');
    22 var t2 = document.createTextNode("td");
    23  y.appendChild(t2);
    26 document.getElementById('f').appendChild(y);
    27 document.documentElement.removeAttribute('class');
    28 }
    29 document.addEventListener("MozReftestInvalidate", doe, false);
    30 </script>
    31 </body>
    32 </html>

mercurial