ladybird/Tests/LibWeb/Ref/input/css-custom-prop-fallback.html
rmg-x e2fa8cf7a8 LibWeb+Tests: Continue variable expansion if CSS-wide keyword is parsed
This allows the existing fallback logic in `Parser::expand_variables` to
run when a CSS-wide keyword is encountered.
2025-05-19 16:32:07 +01:00

12 lines
No EOL
223 B
HTML

<!DOCTYPE html>
<link rel="match" href="../expected/css-custom-prop-fallback-ref.html" />
<style>
:root {
--a: initial;
}
body {
background-color: var(--a, crimson);
}
</style>
<body></body>