Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-properties-values-api/registered-property-computation-color-003.html - WPT Dashboard Interop Dashboard
<!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>