wpt / css / css-values / attr-style-sharing-1.html

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

/css/css-values/attr-style-sharing-1.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-values-5/#attr-notation">
<link rel="match" href="attr-style-sharing-1-ref.html">
<style>
  span {
    background-color: attr(data-foo type(<color>));
  }
</style>
<span data-foo="green">green</span>
<span>not green</span>

/css/css-values/attr-style-sharing-1-ref.html

<!DOCTYPE html>
<style>
  #s1 {
    background-color: green;
  }
</style>
<span id="s1">green</span>
<span>not green</span>