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