chromium/third_party/blink/web_tests/fast/css/import-style-update.html

<head>
<style>
@import url("data:text/css,%23test{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>