wpt / css / css-cascade / scope-implicit-003-print.html

Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-cascade/scope-implicit-003-print.html

<!DOCTYPE html>
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
<link rel="help" href="drafts.csswg.org/css-cascade-6/#scoped-styles">
<link rel="match" href="scope-implicit-003-print-ref.html">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1930618">
<p>Test passes if there is a filled green square.</p>
<svg width="100" height="100" viewBox="0 0 100 100">
  <style>
    @scope {
      .a {
        fill: green;
      }
    }
  </style>
  <rect class="a" x="0" y="0" width="100" height="100" />
</svg>

/css/css-cascade/scope-implicit-003-print-ref.html

<!DOCTYPE html>
<link rel="author" title="David Shin" href="mailto:dshin@mozilla.com">
<link rel="help" href="drafts.csswg.org/css-cascade-6/#scoped-styles">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1930618">
<p>Test passes if there is a filled green square.</p>
<svg width="100" height="100" viewBox="0 0 100 100">
  <rect x="0" y="0" width="100" height="100" fill="green"/>
</svg>