wpt / css / css-properties-values-api / crashtests / computed-property-universal-syntax.html

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

/css/css-properties-values-api/crashtests/computed-property-universal-syntax.html

<!doctype html>
<meta charset=utf8>
<style>
@property --my-registered-property {
  syntax: "<color>";
  inherits: false;
  initial-value: #f0f2f5;
}

.outer {
  --unregistered-property: var(--my-registered-property);
}

.inner {
  --unregistered-property: #c6cfdb;
}
</style>
<div class="outer">
  <div class="inner"></div>
</div>