summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/import-style-update.html
blob: 681e670f06933d4dfa4f27df27090da6cb6aa739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<head>
<style>
@import url("data:text/css,#test{display:none;}");
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
function test() {
var s = document.styleSheets;
s[0].cssRules[0].styleSheet.deleteRule(0);
}
</script>
<body onload='test()'>
Test that modifying @import stylesheet through DOM updates style properly. You should see PASS below:
<div id=test>PASS</div>