tor-browser

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

media_session_default1.html (277B)


      1 <html>
      2  <head>
      3    <title>MediaSessionDefaultTest1</title>
      4  </head>
      5  <body>
      6    <script>
      7      const audio1 = document.createElement("audio");
      8      audio1.src = "audio/owl.mp3";
      9 
     10      window.onload = () => {
     11        audio1.play();
     12      };
     13    </script>
     14  </body>
     15 </html>