LibWeb: Rename CSSStyleProperties::property() -> get_property()

Verbs are nice, and `property` is too useful as a variable name.
This commit is contained in:
Sam Atkins 2025-09-25 15:58:32 +01:00
commit d60c8d80e5
Notes: github-actions[bot] 2025-10-02 12:48:09 +00:00
3 changed files with 12 additions and 12 deletions

View file

@ -33,7 +33,7 @@ public:
virtual size_t length() const override;
virtual String item(size_t index) const override;
Optional<StyleProperty> property(PropertyID) const;
Optional<StyleProperty> get_property(PropertyID) const;
Optional<StyleProperty const&> custom_property(FlyString const& custom_property_name) const;
WebIDL::ExceptionOr<void> set_property(PropertyID, StringView css_text, StringView priority = ""sv);