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-006.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="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>