tor-browser

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

insert-invalid-where-rule-crash.html (413B)


      1 <!DOCTYPE html>
      2 <title>CSSOM Test: Chrome crash keeping rule with empty selector list</title>
      3 <link rel="help" href="https://crbug.com/1499358">
      4 <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
      5 <p id="elem">PASS if no crash.</p>
      6 <style id="sheet">.x, :where("something invalid") {} </style>
      7 <script>
      8  elem.offsetTop;
      9  sheet.sheet.insertRule("p { color: green; }", 0);
     10 </script>