mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00

This allows the existing fallback logic in `Parser::expand_variables` to run when a CSS-wide keyword is encountered.
12 lines
No EOL
223 B
HTML
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> |