tor-browser

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

281241-1.html (490B)


      1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
      2 <html>
      3 <head>
      4  <title>col removal</title>
      5  <script type="text/javascript">
      6   function foo ()
      7   {
      8     var out =document.getElementById('outer');
      9     var int   =document.getElementById('inner');
     10     out.removeChild(int);
     11   }
     12  </script>
     13 </head>
     14 <body onload="foo()">
     15 
     16  <table border>
     17   <colgroup width="500px" id="outer">
     18    <col width="200px" id="inner">
     19   </colgroup>
     20   <tr><td>&nbsp;</td></tr>
     21  </table>
     22 </body>
     23 </html>