Files
gtk/testsuite/css/style/variables2.css
Matthias Clasen c9e4abcd3a css: Fix a crash in variables
We were not careful enough when checking for reference cycles.

Fixes: #6935

Test included.
2024-08-15 10:16:47 -04:00

12 lines
90 B
CSS

:root {
--b: var(--a);
}
:root {
--a: var(--a, red);
}
* {
background: var(--b);
}