wpt / css / css-properties-values-api / registered-property-computation-color-006.html

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

/css/css-properties-values-api/registered-property-computation-color-006.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-properties-values-api/#calculation-of-computed-values" />
<link rel="author" title="Sam Weinig" href="sam@webkit.org">
<link rel="match" href="registered-property-computation-color-001-ref.html">
<style>
@property --x {
  inherits: true;
  initial-value: currentcolor;
  syntax: "<color>";
}
:root {
  color: green;
}
div {
  background-color: var(--x);
  width: 100px;
  height: 100px;
}
</style>
<div></div>

/css/css-properties-values-api/registered-property-computation-color-001-ref.html

<!DOCTYPE html>
<style>
div {
  background-color: green;
  width: 100px;
  height: 100px;
}
</style>
<div></div>