1373559.html (326B)
1 <!doctype html> 2 <title>CSS test for bug 1373559: Deleted @import rules no longer apply to the document.</title> 3 <style></style> 4 Shouldn't be red. 5 <script> 6 let sheet = document.styleSheets[0]; 7 sheet.insertRule("@import url(data:text/css,body{color:red})", 0); 8 document.documentElement.offsetTop; 9 sheet.deleteRule(0); 10 </script>