tor-browser

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

371290.html (691B)


      1 <html class="reftest-wait">
      2 <head>
      3 <title>BC crash</title>
      4 <script>
      5 function doit() {
      6  var C = document.getElementById('C'); 
      7  var newNode = document.createElement('td'); 
      8  newNode.setAttribute('id', 'D'); 
      9  C.insertBefore(newNode, document.getElementById('B')); 
     10  var D = document.getElementById('D'); 
     11  D.remove();  
     12  var A = document.getElementById('A'); 
     13  A.remove();  
     14  document.documentElement.removeAttribute("class");
     15 }
     16 </script>
     17 </head>
     18 
     19 
     20 <body onload="doit()">
     21 <table style="border-collapse: collapse">
     22  <tbody>
     23   <tr id="C">
     24     <th id="B"></th>
     25   </tr>
     26   <tr>
     27    <td id="A" colspan="2"></th>
     28   </tr>
     29   <tbody><tr><th></th></tr></tbody>
     30 
     31 </table>
     32 </body>
     33 </html>