tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

105030-1.html (621B)


      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>