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

Unified Diff: sky/engine/core/css/CSSPrimitiveValueMappings.h

Issue 708843002: Remove -webkit-auto, -webkit-center, -webkit-left, -webkit-right. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: merge to ToT Created 6 years, 1 month 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
« no previous file with comments | « no previous file | sky/engine/core/css/CSSValueKeywords.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/CSSPrimitiveValueMappings.h
diff --git a/sky/engine/core/css/CSSPrimitiveValueMappings.h b/sky/engine/core/css/CSSPrimitiveValueMappings.h
index 48c087d17d9bab8b90118a347d1f7f6e782b187c..3179fb5fa4891b5f3e407ea3f2e3ae77cde97dca 100644
--- a/sky/engine/core/css/CSSPrimitiveValueMappings.h
+++ b/sky/engine/core/css/CSSPrimitiveValueMappings.h
@@ -1750,15 +1750,6 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ETextAlign e)
case JUSTIFY:
m_value.valueID = CSSValueJustify;
break;
- case WEBKIT_LEFT:
- m_value.valueID = CSSValueWebkitLeft;
- break;
- case WEBKIT_RIGHT:
- m_value.valueID = CSSValueWebkitRight;
- break;
- case WEBKIT_CENTER:
- m_value.valueID = CSSValueWebkitCenter;
- break;
}
}
@@ -1766,7 +1757,6 @@ template<> inline CSSPrimitiveValue::operator ETextAlign() const
{
ASSERT(isValueID());
switch (m_value.valueID) {
- case CSSValueWebkitAuto: // Legacy -webkit-auto. Eqiuvalent to start.
case CSSValueStart:
return TASTART;
case CSSValueEnd:
« no previous file with comments | « no previous file | sky/engine/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698