ladybird/Tests/LibWeb/Ref/expected/css/recomputing-inherited-style-doesnt-remove-important-ref.html
Callum Law 9de4e3a0eb LibWeb: Avoid resetting important flag when recomputing inherited style
We were missing the important flag here so would always reset it to
false
2025-11-28 16:15:49 +00:00

9 lines
156 B
HTML

<!DOCTYPE html>
<style>
#bar {
width: 1em !important;
background-color: green;
height: 1em;
}
</style>
<div id="bar"></div>