wpt / css / css-properties-values-api / registered-property-computation-color-003.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-003.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-properties-values-api/#calculation-of-computed-values" />
<link rel="match" href="registered-property-computation-color-003-ref.html">
<style>
@property --x {
  inherits: true;
  initial-value: black;
  syntax: "<color>";
}
div {
  color-scheme: dark;
  --x: Canvas;
  background-color: var(--x);
  width: 100px;
  height: 100px;
}
</style>
<div></div>

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

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