layout/tables/crashtests/430374.html

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.

michael@0 1 <html>
michael@0 2 <head>
michael@0 3 <script type="text/javascript">
michael@0 4
michael@0 5 function boom()
michael@0 6 {
michael@0 7 var odiv = document.createElement("div");
michael@0 8 odiv.style.height = "30px";
michael@0 9 var idiv = document.createElement("div");
michael@0 10 idiv.style.MozColumnWidth = "1px";
michael@0 11 var table = document.createElement("TABLE");
michael@0 12 var x = document.createTextNode("x");
michael@0 13 table.appendChild(x);
michael@0 14 var tr = document.createElement("TR");
michael@0 15 var td = document.createElement("TD");
michael@0 16 tr.appendChild(td);
michael@0 17 table.appendChild(tr);
michael@0 18 idiv.appendChild(table);
michael@0 19 odiv.appendChild(idiv);
michael@0 20 document.body.appendChild(odiv);
michael@0 21
michael@0 22 document.body.offsetHeight;
michael@0 23
michael@0 24 td.style.fontFamily = "X";
michael@0 25 }
michael@0 26
michael@0 27 </script>
michael@0 28 </head>
michael@0 29
michael@0 30 <body onload="boom();"></body>
michael@0 31 </html>

mercurial