wpt / css / css-cascade / scope-inner-pseudo-scope-crash.html

Status: PASS | Duration: 2ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi

/css/css-cascade/scope-inner-pseudo-scope-crash.html

<!DOCTYPE html>
<title>Crash with :scope in both subject and prelude</title>
<link rel="help" href="https://issues.chromium.org/issues/454830626">
<style>
@scope (.a) {
  @scope(:scope) {
    :scope {
      background: green;
    }
  }
}
</style>
<div class=a>PASS if no crash</div>