You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dbgln_if(CSS_PARSER_DEBUG, "CSSParser: Calculated value in font-feature-settings descriptor cannot be resolved at parse time; skipping");
5761
+
}
5762
+
} else {
5763
+
dbgln_if(CSS_PARSER_DEBUG, "CSSParser: Value in font-feature-settings descriptor is not an OpenTypeTaggedStyleValue holding a <integer>; skipping");
5764
+
}
5765
+
}
5766
+
font_feature_settings = move(settings);
5767
+
} else {
5768
+
dbgln_if(CSS_PARSER_DEBUG, "CSSParser: Failed to parse font-feature-settings descriptor, not compatible with value returned from parsing font-feature-settings property: {}", value.value()->to_string());
5769
+
}
5770
+
}
5771
+
continue;
5772
+
}
5737
5773
if (declaration.name().equals_ignoring_ascii_case("font-language-override"sv)) {
dbgln_if(CSS_PARSER_DEBUG, "CSSParser: Calculated value in font-variation-settings descriptor cannot be resolved at parse time; skipping");
5835
+
}
5836
+
} else {
5837
+
dbgln_if(CSS_PARSER_DEBUG, "CSSParser: Value in font-variation-settings descriptor is not an OpenTypeTaggedStyleValue holding a <number>; skipping");
5838
+
}
5839
+
}
5840
+
font_variation_settings = move(settings);
5841
+
} else {
5842
+
dbgln_if(CSS_PARSER_DEBUG, "CSSParser: Failed to parse font-variation-settings descriptor, not compatible with value returned from parsing font-variation-settings property: {}", value.value()->to_string());
5843
+
}
5844
+
}
5845
+
continue;
5846
+
}
5777
5847
if (declaration.name().equals_ignoring_ascii_case("font-weight"sv)) {
0 commit comments