We were not careful enough when checking for reference cycles. Fixes: #6935 Test included.
12 lines
90 B
CSS
12 lines
90 B
CSS
:root {
|
|
--b: var(--a);
|
|
}
|
|
|
|
:root {
|
|
--a: var(--a, red);
|
|
}
|
|
|
|
* {
|
|
background: var(--b);
|
|
}
|