Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/insert-invalid-where-rule-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSSOM Test: Chrome crash keeping rule with empty selector list</title>
<link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
<p id="elem">PASS if no crash.</p>
<style id="sheet">.x, :where("something invalid") {} </style>
<script>
elem.offsetTop;
sheet.sheet.insertRule("p { color: green; }", 0);
</script>