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

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

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

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

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

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