Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Unified Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h

Issue 1419813004: Remove the "horizontal-bt" value from -webkit-writing-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add static_assert to ensure TransformedWritingMode matches to WritingMode Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
index 01d98f7e696d9fbf08f45cb402c09c0dd3ebf7c0..7e7df4829d02a455a41f8da2aa18a059d989b8f6 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
@@ -2668,9 +2668,6 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(WritingMode e)
case LeftToRightWritingMode:
m_value.valueID = CSSValueVerticalLr;
break;
- case BottomToTopWritingMode:
- m_value.valueID = CSSValueHorizontalBt;
- break;
}
}
@@ -2690,8 +2687,6 @@ template<> inline WritingMode CSSPrimitiveValue::convertTo() const
return RightToLeftWritingMode;
case CSSValueVerticalLr:
return LeftToRightWritingMode;
- case CSSValueHorizontalBt:
- return BottomToTopWritingMode;
default:
break;
}
« no previous file with comments | « third_party/WebKit/ManualTests/caret-in-columns-flipped.html ('k') | third_party/WebKit/Source/core/css/CSSProperty.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698