| Index: Source/core/style/ComputedStyle.h
|
| diff --git a/Source/core/style/ComputedStyle.h b/Source/core/style/ComputedStyle.h
|
| index dcaba3799d9cd350b768467b630688f4c6a187b9..054e890ba776b16808df82af2f5732c4cf13db58 100644
|
| --- a/Source/core/style/ComputedStyle.h
|
| +++ b/Source/core/style/ComputedStyle.h
|
| @@ -523,7 +523,6 @@ public:
|
| int borderStartWidth() const;
|
| int borderEndWidth() const;
|
|
|
| - int outlineSize() const { return max(0, outlineWidth() + outlineOffset()); }
|
| int outlineWidth() const
|
| {
|
| if (m_background->outline().style() == BNONE)
|
| @@ -533,7 +532,7 @@ public:
|
| bool hasOutline() const { return outlineWidth() > 0 && outlineStyle() > BHIDDEN; }
|
| EBorderStyle outlineStyle() const { return m_background->outline().style(); }
|
| OutlineIsAuto outlineStyleIsAuto() const { return static_cast<OutlineIsAuto>(m_background->outline().isAuto()); }
|
| - int outlineOutset() const;
|
| + int outlineOutsetExtent() const;
|
|
|
| EOverflow overflowX() const { return static_cast<EOverflow>(noninherited_flags.overflowX); }
|
| EOverflow overflowY() const { return static_cast<EOverflow>(noninherited_flags.overflowY); }
|
|
|