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
commit ca02c433d2
Notes: sideshowbarker 2024-07-17 08:35:21 +09:00

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)