Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-cascade/scope-import-inner-scope.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>@import scope(), :scope rules in imported stylesheet</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@import url("resources/scope-imported.css") scope((.scope));
</style>
<main id=main>
<div class=scope>
<div class=inner-scope>
<div class=z>Inside</div>
</div>
</div>
<div class=inner-scope>
<div class=z>Outside</div>
</div>
</main>
<script>
test(() => {
let e = main.querySelector('.scope > .inner-scope > .z');
assert_equals(getComputedStyle(e).getPropertyValue('--z'), '1');
}, '@scope within scope-imported stylesheet matches');
test(() => {
let e = main.querySelector('#main > .inner-scope > .z');
assert_equals(getComputedStyle(e).getPropertyValue('--z'), '');
}, '@scope within scope-imported does not ignore import scope');
</script>