LibWeb: Support infinite range for CSS properties

This makes `[-∞,∞]` generate valid code, instead of `return ;`
This commit is contained in:
Sam Atkins 2023-06-02 17:14:27 +01:00 committed by Andreas Kling
parent 7115446995
commit 2d7308cb88
Notes: sideshowbarker 2024-07-16 23:51:07 +09:00

View File

@ -259,6 +259,11 @@ bool property_accepts_@css_type_name@(PropertyID property_id, [[maybe_unused]] @
if (max_value_string == "")
max_value_string = {};
if (min_value_string.is_empty() && max_value_string.is_empty()) {
property_generator.appendln("true;");
break;
}
auto output_check = [&](auto& value_string, StringView comparator) {
if (value_getter.has_value()) {
property_generator.set("value_number", value_string);