Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<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>