tor-browser

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

387195-2.xhtml (560B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <title>Testcase for bug </title>
      4 <head>
      5 <script type="text/javascript">
      6 function boom() {
      7  var colgroup = document.createElementNS("http://www.w3.org/1999/xhtml", 'colgroup');
      8  document.getElementById('thead').insertBefore(colgroup, null);
      9 }
     10 </script>
     11 
     12 <style type="text/css">
     13    thead {border:3px solid purple;}
     14 </style>
     15 </head>
     16 
     17 
     18 <body onload="boom()">
     19 
     20 <table><thead id="thead"></thead></table>
     21 
     22 </body>
     23 </html>