Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 div.spacer {width:20px; height: 20px;}
6 table {background-color: lime;}
7 td {background-color: green;}
8 </style>
9 <script>
10 function testIt() {
11 document.body.offsetWidth;
12 var table = document.getElementsByTagName("TABLE")[0];
13 table.setAttribute("cellpadding", "30px");
14 }
15 </script>
16 </head>
17 <body onload="testIt();">
18 <table><tr>
19 <td> <div class="spacer"></div> </td></tr>
20 </table>
21 </body>
22 </html>