Files
ladybird/Tests/LibWeb/Layout/input/important-custom-properties-resolution.html

14 lines
279 B
HTML

<!DOCTYPE html><style>
main {
--size: 50px !important;
--bg: green !important;
}
main {
--size: 200px;
width: var(--size);
height: var(--size);
--bg: red;
background: var(--bg);
}
</style><body><main>