Index: third_party/WebKit/Source/platform/LengthBox.cpp |
diff --git a/third_party/WebKit/Source/platform/LengthBox.cpp b/third_party/WebKit/Source/platform/LengthBox.cpp |
index 5afe9d2a0bced38f3d15d19de31b81009b38ba04..071d67b5c0c6231762be54d1f9ce378c05a36ee6 100644 |
--- a/third_party/WebKit/Source/platform/LengthBox.cpp |
+++ b/third_party/WebKit/Source/platform/LengthBox.cpp |
@@ -48,8 +48,6 @@ const Length& LengthBox::before(WritingMode writingMode) const |
switch (writingMode) { |
case TopToBottomWritingMode: |
return m_top; |
- case BottomToTopWritingMode: |
- return m_bottom; |
case LeftToRightWritingMode: |
return m_left; |
case RightToLeftWritingMode: |
@@ -64,8 +62,6 @@ const Length& LengthBox::after(WritingMode writingMode) const |
switch (writingMode) { |
case TopToBottomWritingMode: |
return m_bottom; |
- case BottomToTopWritingMode: |
- return m_top; |
case LeftToRightWritingMode: |
return m_right; |
case RightToLeftWritingMode: |