tor-browser

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

detach-locked-slot-children-crash.html (495B)


      1 <!doctype html>
      2 <html class="test-wait">
      3 <link rel="help" href="https://crbug.com/1284278">
      4 <body dir="auto">
      5  <p>Pass if no crash.</p>
      6  <details id="details">
      7    <img id="img" alt="alt"></img>
      8    <marquee id="marquee"></marquee>
      9  </details>
     10 </body>
     11 <script>
     12  requestAnimationFrame(() => requestAnimationFrame(() => {
     13    marquee.appendChild(details.firstChild);
     14    img.srcset = "dummy";
     15    img.alt = "dummy";
     16    document.documentElement.classList.remove("test-wait");
     17  }));
     18 </script>