layout/reftests/bugs/363370-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     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