tor-browser

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

aria-owns-destroyed-by-content-replacement.html (345B)


      1 <html class="test-wait">
      2 <script>
      3 window.onload = function fuzz() {
      4  document.querySelector('audio').setAttribute('aria-owns', 'x1');
      5  requestAnimationFrame(() => {
      6    document.querySelector('audio').removeAttribute('aria-owns');
      7    document.documentElement.className = '';
      8  });
      9 }
     10 </script>
     11 <audio>
     12  <span id="x1"></span>
     13 </audio>
     14 </html>