layout/tables/crashtests/341227-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">
     3 <head>
     4 <script>
     6 function boom()
     7 {
     8   var table = document.getElementById('table'); 
    10   var newTR = document.createElement('tr'); 
    11   var newTD = document.createElement('td'); 
    12   newTR.appendChild(newTD); 
    13   table.appendChild(newTR); 
    15   newTD.setAttribute('rowspan', 3); 
    17   document.documentElement.removeAttribute("class");
    18 }
    20 </script>
    21 </head>
    24 <body onload="setTimeout(boom, 30);">
    26 <table id="table"><tr><td></td><td></td></tr></table>
    28 </body>
    30 </html>

mercurial