tor-browser

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

370876-1.html (677B)


      1 <html class="reftest-wait">
      2 <head>
      3 <script>
      4    
      5 function boom()
      6 {
      7  var a = document.getElementById("a");
      8  var b = document.getElementById("b");
      9  var x = document.getElementById("x");
     10 
     11  a.parentNode.insertBefore(x, a);
     12  x.remove();
     13  b.remove();
     14  
     15  document.documentElement.removeAttribute("class");
     16 }
     17 
     18 </script>
     19 </head>
     20 
     21 
     22 <body onload="setTimeout(boom, 30);">
     23    
     24  <table>
     25    <tr>
     26      <td id="x">X</td>
     27    </tr>
     28  </table>
     29                                                        
     30  <table border="1" style="border-collapse: collapse;">
     31    <tr>
     32      <td id="a">A</td>
     33    </tr>
     34    <tr>
     35      <td id="b" colspan="2">B</td>
     36    </tr>
     37  </table>
     38 
     39 </body>
     40 
     41 </html>