layout/reftests/bugs/389924-1a.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <script>
     5 function boom()
     6 {
     7   var table = document.getElementById("table");
     9   var newCaption = document.createElement('caption');
    10   newCaption.appendChild(document.createTextNode("THIS SHOULD BE VISIBLE"));
    11   table.insertBefore(newCaption, table.firstChild);
    12 }
    13 </script>
    15 </head>
    16 <body onload="boom();">
    18 <table id="table"><tbody></tbody></table>
    19 </body>
    20 </html>

mercurial