mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:47:35 +00:00
LibWeb: Add getter for separator to StyleValueList
This commit is contained in:
parent
6bc30099f2
commit
ca02c433d2
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,8 @@ public:
|
||||||
|
|
||||||
bool properties_equal(StyleValueList const& other) const { return m_properties == other.m_properties; }
|
bool properties_equal(StyleValueList const& other) const { return m_properties == other.m_properties; }
|
||||||
|
|
||||||
|
Separator separator() const { return m_properties.separator; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
StyleValueList(StyleValueVector&& values, Separator separator)
|
StyleValueList(StyleValueVector&& values, Separator separator)
|
||||||
: StyleValueWithDefaultOperators(Type::ValueList)
|
: StyleValueWithDefaultOperators(Type::ValueList)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue