tor-browser

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

cross-fade-legacy-crash.html (735B)


      1 <!DOCTYPE html>
      2 <html class="test-wait">
      3  <head>
      4    <title>CSS Images Test: Serializing legacy cross-fade syntax crashes Chrome</title>
      5    <link rel="help" href="https://crbug.com/1509173">
      6    <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
      7    <style>
      8      .missing { border-image: -webkit-cross-fade(none, none, 13%); }
      9    </style>
     10    <script src="/common/gc.js"></script>
     11  </head>
     12  <body>
     13    <p>Test passes if the browser does not crash.</p>
     14    <script>
     15      requestAnimationFrame(async () => {
     16        await garbageCollect();
     17        document.styleSheets[0].cssRules[0].cssText;
     18        document.documentElement.classList.remove('test-wait');
     19      });
     20    </script>
     21  </body>
     22 </html>