mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-05 07:40:58 +00:00
12 lines
223 B
HTML
12 lines
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>
|