1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

LibWeb: Rename Element::resolved_style() => specified_css_values()

This object represents the specified CSS values, so let's call it that.
This commit is contained in:
Andreas Kling 2021-01-06 11:42:01 +01:00
parent 2cc39cfb0e
commit ba8990fb6c
3 changed files with 7 additions and 7 deletions

View file

@ -86,7 +86,7 @@ public:
String name() const { return attribute(HTML::AttributeNames::name); }
const CSS::StyleProperties* resolved_style() const { return m_resolved_style.ptr(); }
const CSS::StyleProperties* specified_css_values() const { return m_specified_css_values.ptr(); }
NonnullRefPtr<CSS::StyleProperties> computed_style();
const CSS::StyleDeclaration* inline_style() const { return m_inline_style; }
@ -110,7 +110,7 @@ private:
RefPtr<CSS::StyleDeclaration> m_inline_style;
RefPtr<CSS::StyleProperties> m_resolved_style;
RefPtr<CSS::StyleProperties> m_specified_css_values;
Vector<FlyString> m_classes;
};