removerule-invalidation-crash.html (468B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSSOM - removeRule doesn't assert when removing a particular set of rules</title> 4 <link rel="help" href="https://drafts.csswg.org/cssom/#cssstylesheet"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1659718"> 6 <style> 7 @media all { 8 * { color: red; } 9 10 #foobar { color: blue } 11 } 12 </style> 13 <script> 14 document.documentElement.getBoundingClientRect(); 15 document.styleSheets[0].deleteRule(0); 16 </script>