| Index: Source/core/rendering/style/BorderData.h
|
| diff --git a/Source/core/rendering/style/BorderData.h b/Source/core/rendering/style/BorderData.h
|
| index bf96bcf797ce8e71844fd675424ec52a93151612..4df4644ebfe64255679223c993b5f63a90bb4036 100644
|
| --- a/Source/core/rendering/style/BorderData.h
|
| +++ b/Source/core/rendering/style/BorderData.h
|
| @@ -94,6 +94,19 @@ public:
|
| && m_topLeft == o.m_topLeft && m_topRight == o.m_topRight && m_bottomLeft == o.m_bottomLeft && m_bottomRight == o.m_bottomRight;
|
| }
|
|
|
| + bool visuallyEqual(const BorderData& o) const
|
| + {
|
| + return m_left.visuallyEqual(o.m_left)
|
| + && m_right.visuallyEqual(o.m_right)
|
| + && m_top.visuallyEqual(o.m_top)
|
| + && m_bottom.visuallyEqual(o.m_bottom)
|
| + && m_image == o.m_image
|
| + && m_topLeft == o.m_topLeft
|
| + && m_topRight == o.m_topRight
|
| + && m_bottomLeft == o.m_bottomLeft
|
| + && m_bottomRight == o.m_bottomRight;
|
| + }
|
| +
|
| bool operator!=(const BorderData& o) const
|
| {
|
| return !(*this == o);
|
|
|