| Index: third_party/WebKit/Source/platform/geometry/LayoutRectOutsets.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/LayoutRectOutsets.cpp b/third_party/WebKit/Source/platform/geometry/LayoutRectOutsets.cpp
|
| index a73594f888194d207275beb982dc9a6c8b1e3012..8a75ada79ccbee52872c92d10ec4b4419ae95ce6 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/LayoutRectOutsets.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/LayoutRectOutsets.cpp
|
| @@ -76,8 +76,6 @@ LayoutUnit LayoutRectOutsets::before(WritingMode writingMode) const
|
| switch (writingMode) {
|
| case TopToBottomWritingMode:
|
| return m_top;
|
| - case BottomToTopWritingMode:
|
| - return m_bottom;
|
| case LeftToRightWritingMode:
|
| return m_left;
|
| case RightToLeftWritingMode:
|
| @@ -92,8 +90,6 @@ LayoutUnit LayoutRectOutsets::after(WritingMode writingMode) const
|
| switch (writingMode) {
|
| case TopToBottomWritingMode:
|
| return m_bottom;
|
| - case BottomToTopWritingMode:
|
| - return m_top;
|
| case LeftToRightWritingMode:
|
| return m_right;
|
| case RightToLeftWritingMode:
|
| @@ -123,9 +119,6 @@ void LayoutRectOutsets::setBefore(WritingMode writingMode, LayoutUnit value)
|
| case TopToBottomWritingMode:
|
| m_top = value;
|
| break;
|
| - case BottomToTopWritingMode:
|
| - m_bottom = value;
|
| - break;
|
| case LeftToRightWritingMode:
|
| m_left = value;
|
| break;
|
| @@ -144,9 +137,6 @@ void LayoutRectOutsets::setAfter(WritingMode writingMode, LayoutUnit value)
|
| case TopToBottomWritingMode:
|
| m_bottom = value;
|
| break;
|
| - case BottomToTopWritingMode:
|
| - m_top = value;
|
| - break;
|
| case LeftToRightWritingMode:
|
| m_right = value;
|
| break;
|
|
|