tor-browser

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

368651-1.html (517B)


      1 <!DOCTYPE html>
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 
      4 <head>
      5 <script>
      6 function boom()
      7 {
      8  var td = document.createElementNS("http://www.w3.org/1999/xhtml", "td");
      9  td.appendChild(document.createTextNode("b"));
     10  document.getElementById("tbody").appendChild(td);
     11 }
     12 </script>
     13 </head>
     14 
     15 <body>
     16 
     17 <table border>
     18  <tbody id="tbody">
     19    <tr>
     20      <td rowspan="0">a</td>
     21    </tr>
     22    <tr>
     23    </tr>
     24  </tbody>
     25 </table>
     26 
     27 <script>
     28  // Flush layout
     29  document.body.offsetWidth;
     30 
     31  boom();
     32 </script>
     33 
     34 </body>
     35 </html>