tor-browser

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

delete-image-set.html (496B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/363567">
      3 <link rel="help" href="https://issues.chromium.org/issues/40360947">
      4 <style>
      5  div { background: url(#); }
      6  div { background: -webkit-image-set(url(#) 1x); }
      7  div { background: image-set(url(#) 1x); }
      8 </style>
      9 <body>
     10  <div style="transition: 1s">This test passes if it does not crash.</div>
     11 </body>
     12 <script>
     13 window.onload = () => {
     14  document.styleSheets[0].deleteRule(2);
     15  document.styleSheets[0].deleteRule(1);
     16 };
     17 </script>