mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +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 ✅
@@ -29,7 +29,7 @@ String CounterDefinitionsStyleValue::to_string(SerializationMode mode) const
|
||||
return stb.to_string_without_validation();
|
||||
}
|
||||
|
||||
ValueComparingNonnullRefPtr<StyleValue const> CounterDefinitionsStyleValue::absolutized(ComputationContext const& computation_context, PropertyComputationDependencies& property_computation_dependencies) const
|
||||
ValueComparingNonnullRefPtr<StyleValue const> CounterDefinitionsStyleValue::absolutized(ComputationContext const& computation_context) const
|
||||
{
|
||||
Vector<CounterDefinition> computed_definitions;
|
||||
|
||||
@@ -41,7 +41,7 @@ ValueComparingNonnullRefPtr<StyleValue const> CounterDefinitionsStyleValue::abso
|
||||
};
|
||||
|
||||
if (specified_definition.value)
|
||||
computed_definition.value = specified_definition.value->absolutized(computation_context, property_computation_dependencies);
|
||||
computed_definition.value = specified_definition.value->absolutized(computation_context);
|
||||
|
||||
computed_definitions.append(computed_definition);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user