OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../../resources/testharness.js"></script> | |
3 <script src="../../resources/testharnessreport.js"></script> | |
4 <style>@media{}</style> | |
5 <style>@media{}</style> | |
6 <script> | |
7 test(() => { | |
8 var sheet = document.styleSheets[0]; | |
9 sheet.ownerNode.remove(); | |
10 sheet.insertRule("div{}", 0); | |
11 }, "Inserting a rule in a detached sheet with @media should not cause an ass ert/crash."); | |
12 </script> | |
OLD | NEW |