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

LibWeb: Add getter for separator to StyleValueList

This commit is contained in:
MacDue 2023-04-03 18:25:13 +01:00 committed by Andreas Kling
parent 6bc30099f2
commit ca02c433d2

View file

@ -34,6 +34,8 @@ public:
bool properties_equal(StyleValueList const& other) const { return m_properties == other.m_properties; }
Separator separator() const { return m_properties.separator; }
private:
StyleValueList(StyleValueVector&& values, Separator separator)
: StyleValueWithDefaultOperators(Type::ValueList)