mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
LibWeb: Support infinite range for CSS properties
This makes `[-∞,∞]` generate valid code, instead of `return ;`
This commit is contained in:
parent
7115446995
commit
2d7308cb88
Notes:
sideshowbarker
2024-07-16 23:51:07 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/2d7308cb88 Pull-request: https://github.com/SerenityOS/serenity/pull/19228 Reviewed-by: https://github.com/awesomekling ✅
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user