tor-browser

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

1153716.html (322B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <script>
      6 
      7 function boom()
      8 {
      9    var td = document.createElement("td");
     10    document.body.appendChild(td);
     11    var audio = document.createElement("audio");
     12    audio.controls = true;
     13    td.appendChild(audio);
     14 }
     15 
     16 </script>
     17 </head>
     18 <body onload="boom();"></body>
     19 </html>