layout/reftests/invalidation/table-repaint-d.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 <!DOCTYPE html>
     2 <html class="reftest-wait"><head>
     3 <title>table-repaint-d</title>
     4 <body>
     5 <table id="x">
     6 <tr>
     7   <td>aaa</td><td>bbb</td>
     8 </tr>
     9 </table>
    10 <script>
    11   function foo() {
    12     var t = document.getElementById("x");
    13     var r = document.createElement("tr");
    14     var c = document.createElement("td");
    15     c.appendChild(document.createTextNode("longer text: above this, first cell should say 'aaa' while second says 'bbb'."));
    16     r.appendChild(c);
    17     t.tBodies[0].appendChild(r);
    18     document.documentElement.removeAttribute("class");
    19   }
    20 document.addEventListener("MozReftestInvalidate", foo, false);
    21 </script>
    22 </body>
    23 </html>

mercurial