mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Don't pass unnecessary PropertyComputationDependencies struct
Since we now have access to the `AbstractElement` through the `ComputationContext` we can just set the flag that this element relies on tree counting functions directly, no need to pass this struct around.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
5b9a36b172
commit
f49cf75d44
Notes:
github-actions[bot]
2025-10-21 23:01:59 +00:00
Author: https://github.com/Calme1709 Commit: https://github.com/LadybirdBrowser/ladybird/commit/f49cf75d442 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6526 Reviewed-by: https://github.com/gmta ✅
@@ -4188,7 +4188,7 @@ RefPtr<CalculationNode const> Parser::parse_a_calc_function_node(Function const&
|
||||
if (auto maybe_function = parse_math_function(function, context)) {
|
||||
// NOTE: We have to simplify manually here, since parse_math_function() is a helper for calc() parsing
|
||||
// that doesn't do it directly by itself.
|
||||
return simplify_a_calculation_tree(*maybe_function, context, CalculationResolutionContext {}, nullptr);
|
||||
return simplify_a_calculation_tree(*maybe_function, context, CalculationResolutionContext {});
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
@@ -4468,7 +4468,7 @@ RefPtr<CalculationNode const> Parser::parse_a_calculation(Vector<ComponentValue>
|
||||
return nullptr;
|
||||
|
||||
// 6. Return the result of simplifying a calculation tree from values.
|
||||
return simplify_a_calculation_tree(*calculation_tree, context, CalculationResolutionContext {}, nullptr);
|
||||
return simplify_a_calculation_tree(*calculation_tree, context, CalculationResolutionContext {});
|
||||
}
|
||||
|
||||
// https://drafts.csswg.org/css-values-5/#tree-counting
|
||||
|
||||
Reference in New Issue
Block a user