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

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
     2 <html>
     3 <head>
     4   <title>Bug 105030</title>
     5 </head>
     6 <body>
     7 <table style="border: solid 1px">
     8   <tr><td>
     9     <table align="left">
    10       <tr><td id="cell">Inner Table </td></tr>
    11     </table>
    12   </td></tr>
    13 </table>
    14 <script type="text/javascript">
    15   function loadImage() {
    16     document.body.offsetWidth
    17     var img = document.createElement("img");
    18     img.src = "solidblue.png";
    19     img.alt = "";
    20     targetCell = document.getElementById("cell");
    21     targetCell.appendChild(img);
    22   }
    23   loadImage();
    24 </script>
    25 </body>
    26 </html>

mercurial