tor-browser

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

338312-1.xhtml (436B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3 <script>
      4 
      5 
      6 function boom()
      7 {
      8  document.getElementById("foo").appendChild(document.getElementById("bar"));
      9 }
     10 
     11 window.addEventListener("load", boom, false);
     12 
     13 </script>
     14 </head>
     15 
     16 <body>
     17 
     18  <div id="foo"></div>
     19 
     20  <svg xmlns="http://www.w3.org/2000/svg">
     21    <defs>
     22      <linearGradient id="grad1"/>
     23    </defs>
     24    <rect id="bar" style="fill:url(#grad1);" />  
     25  </svg>
     26 
     27 </body>
     28 </html>