layout/reftests/bugs/564054-1.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.

michael@0 1 <!DOCTYPE html>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <script type="text/javascript">
michael@0 5
michael@0 6 function boom()
michael@0 7 {
michael@0 8 var tbody = document.getElementById("tbody");
michael@0 9 var trX = document.createElement('tr');
michael@0 10 tbody.insertBefore(trX, tbody.getElementsByTagName("tr")[0]);
michael@0 11 var trY = document.createElement('tr');
michael@0 12 tbody.insertBefore(trY, trX);
michael@0 13 var tdY1 = document.createElement('td');
michael@0 14 tdY1.setAttribute('rowspan', 0);
michael@0 15 trY.appendChild(tdY1);
michael@0 16 }
michael@0 17 </script>
michael@0 18 <style>
michael@0 19 td {width: 30px; height: 30px;}
michael@0 20
michael@0 21 </style>
michael@0 22 </head>
michael@0 23
michael@0 24 <body onload="boom();">
michael@0 25 <table border cellspacing="10px" cellpadding="10px">
michael@0 26 <tbody id="tbody">
michael@0 27 <tr>
michael@0 28 <td></td>
michael@0 29 </tr>
michael@0 30 </tbody>
michael@0 31 </table>
michael@0 32 </body>
michael@0 33 </html>

mercurial