Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-cascade/scope-inner-pseudo-scope-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Crash with :scope in both subject and prelude</title>
<style>
@scope (.a) {
@scope(:scope) {
:scope {
background: green;
}
}
}
</style>
<div class=a>PASS if no crash</div>