Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!--
Any copyright is dedicated to the Public Domain.
-->
<!DOCTYPE html>
<title>CSS Test: Test declaring a variable that contains a CDC token.</title>
<link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au">
<link rel="match" href="support/color-green-ref.html">
<style>
body {
color: green;
}
p {
color: red;
}
p {
color: orange;
--a: red;
--b: crimson;
--a: --> var(--b); /* valid at parse */
color: var(--a); /* but IACVT at substitution */
}
</style>
<p>This text must be green.</p>