LibWeb: Avoid resetting important flag when recomputing inherited style

We were missing the important flag here so would always reset it to
false
This commit is contained in:
Callum Law
2025-11-15 00:48:15 +13:00
committed by Sam Atkins
parent 9d2ecc069f
commit 9de4e3a0eb
Notes: github-actions[bot] 2025-11-28 16:17:27 +00:00
3 changed files with 38 additions and 2 deletions

View File

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