layout/tables/crashtests/416845-3.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.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html class="reftest-wait">
michael@0 3 <head>
michael@0 4 <style type="text/css">
michael@0 5
michael@0 6 html,body {
michael@0 7 color:black; background-color:white; font-size:16px; padding:0; margin:0;
michael@0 8 }
michael@0 9
michael@0 10 </style>
michael@0 11
michael@0 12 <script>
michael@0 13 function insertTable() {
michael@0 14 var table = document.createElement('table');
michael@0 15 var tbody = document.createElement('tbody');
michael@0 16 var tbody2 = document.createElement('tbody');
michael@0 17 var text = document.createTextNode('1');
michael@0 18 var text2 = document.createTextNode('2');
michael@0 19 tbody.appendChild(text);
michael@0 20 tbody2.appendChild(text2);
michael@0 21 table.appendChild(tbody);
michael@0 22 table.appendChild(tbody2);
michael@0 23
michael@0 24 table.setAttribute('height','82');
michael@0 25 table.setAttribute('style','border:6px solid lime');
michael@0 26
michael@0 27 tbody2.setAttribute('height','30');
michael@0 28
michael@0 29 document.body.appendChild(table);
michael@0 30
michael@0 31 setTimeout(function() { document.documentElement.className = ""; }, 0);
michael@0 32 }
michael@0 33 </script>
michael@0 34 </head>
michael@0 35
michael@0 36 <body onload="insertTable()"></body>
michael@0 37
michael@0 38 </html>

mercurial