summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-08-13 16:19:57 +0100
committerMichael Drake <mdrake.unique@gmail.com>2022-08-29 13:49:20 +0100
commit0997e85ec5f14bd0d6959b9201fcd3845b224747 (patch)
tree48a61106a2dc5ff9317ddd77d1ed603286042344 /src
parent508971b0eed673d4f3c7ac780d5423a3f1ecf7ed (diff)
downloadlibcss-0997e85ec5f14bd0d6959b9201fcd3845b224747.tar.gz
libcss-0997e85ec5f14bd0d6959b9201fcd3845b224747.tar.bz2
Parse: Important: Handle new explicit defaulting values
Diffstat (limited to 'src')
-rw-r--r--src/parse/important.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/important.c b/src/parse/important.c
index e0e8620..1066d90 100644
--- a/src/parse/important.c
+++ b/src/parse/important.c
@@ -87,7 +87,7 @@ void css__make_style_important(css_style *style)
offset++;
/* Advance past any property-specific data */
- if (isInherit(opv) == false) {
+ if (hasFlagValue(opv) == false) {
switch (op) {
case CSS_PROP_AZIMUTH:
if ((value & ~AZIMUTH_BEHIND) == AZIMUTH_ANGLE)