LibWeb: Rename get_inherit_value to get_non_animated_inherit_value

This more acurately represents what it does.
This commit is contained in:
Callum Law 2025-08-28 23:42:46 +12:00 committed by Sam Atkins
parent 3b6d17cd42
commit b80e6a4d30
Notes: github-actions[bot] 2025-09-19 09:09:28 +00:00
4 changed files with 6 additions and 6 deletions

View file

@ -71,7 +71,7 @@ static NonnullRefPtr<StyleValue const> with_keyword_values_resolved(DOM::Element
case Keyword::Unset:
return property_initial_value(property_id);
case Keyword::Inherit:
return StyleComputer::get_inherit_value(property_id, { element });
return StyleComputer::get_non_animated_inherit_value(property_id, { element });
default:
break;
}