ladybird/Tests/LibWeb/Ref/input/css-custom-prop-fallback.html

12 lines
223 B
HTML
Raw Normal View History

<!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>