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-004.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="/css/reference/ref-filled-green-100px-square-only.html">
<style>
@property --a {
syntax: '<color>';
inherits: true;
initial-value: green;
}
body {
--a: 1em;
}
div {
width: 100px;
height: 100px;
background-color: var(--a);
}
</style>
<p>Test passes if there is a filled green square.</p>
<div></div>