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

LibWeb: Convert StyleResolver.{h,cpp} to east const

This commit is contained in:
Sam Atkins 2021-07-14 16:56:11 +01:00 committed by Andreas Kling
parent d72ce7b989
commit 57d34f1966
2 changed files with 19 additions and 18 deletions

View file

@ -28,18 +28,18 @@ public:
~StyleResolver();
DOM::Document& document() { return m_document; }
const DOM::Document& document() const { return m_document; }
DOM::Document const& document() const { return m_document; }
NonnullRefPtr<StyleProperties> resolve_style(DOM::Element&) const;
Vector<MatchingRule> collect_matching_rules(const DOM::Element&) const;
Vector<MatchingRule> collect_matching_rules(DOM::Element const&) const;
void sort_matching_rules(Vector<MatchingRule>&) const;
struct CustomPropertyResolutionTuple {
Optional<StyleProperty> style {};
u32 specificity { 0 };
};
CustomPropertyResolutionTuple resolve_custom_property_with_specificity(DOM::Element&, const String&) const;
Optional<StyleProperty> resolve_custom_property(DOM::Element&, const String&) const;
CustomPropertyResolutionTuple resolve_custom_property_with_specificity(DOM::Element&, String const&) const;
Optional<StyleProperty> resolve_custom_property(DOM::Element&, String const&) const;
static bool is_inherited_property(CSS::PropertyID);