tor-browser

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

347507-1.xhtml (486B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3 <script>
      4 
      5 function foo()
      6 {
      7  var div = document.getElementById("div");
      8  div.appendChild(div.firstChild);
      9 
     10  var td = document.getElementById("td");
     11  td.setAttribute('rowspan', -2);
     12 }
     13 
     14 </script>
     15 
     16 </head>
     17 
     18 <body onload="foo()">
     19 
     20 
     21 <div id="div"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
     22 
     23    <mtable>      <mtr>         <mtd id="td"><mi>y</mi></mtd>      </mtr>    </mtable>
     24 
     25 </math></div>
     26 
     27 </body>
     28 
     29 </html>