We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12ca074 commit 8877a4fCopy full SHA for 8877a4f
Libraries/LibWeb/CSS/Parser/Parser.cpp
@@ -8860,9 +8860,11 @@ Parser::ParseErrorOr<NonnullRefPtr<CSSStyleValue>> Parser::parse_css_value(Prope
8860
}
8861
8862
// No property matched, so we're done.
8863
- dbgln("No property (from {} properties) matched {}", unassigned_properties.size(), stream.next_token().to_debug_string());
8864
- for (auto id : unassigned_properties)
8865
- dbgln(" {}", string_from_property_id(id));
+ if constexpr (CSS_PARSER_DEBUG) {
+ dbgln("No property (from {} properties) matched {}", unassigned_properties.size(), stream.next_token().to_debug_string());
+ for (auto id : unassigned_properties)
8866
+ dbgln(" {}", string_from_property_id(id));
8867
+ }
8868
break;
8869
8870
0 commit comments