mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00: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: 2d7308cb88
Pull-request: https://github.com/SerenityOS/serenity/pull/19228
Reviewed-by: https://github.com/awesomekling ✅
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue