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

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

Issue 1709963002: [css-align] New CSS Value 'normal' for Self Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Getting back the FullScreen fix, missed during the rebase. Created 4 years, 4 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 dd8e963354bda5ff8036228abca6213577972601..73562a95f5273fea27b499b120052559002545fd 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
@@ -4373,7 +4373,12 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ItemPosition itemPosition
init(UnitType::ValueID);
switch (itemPosition) {
case ItemPositionAuto:
- m_value.valueID = CSSValueAuto;
+ // The 'auto' values might have been already resolved.
+ NOTREACHED();
+ m_value.valueID = CSSValueNormal;
+ break;
+ case ItemPositionNormal:
+ m_value.valueID = CSSValueNormal;
break;
case ItemPositionStretch:
m_value.valueID = CSSValueStretch;
@@ -4419,6 +4424,8 @@ template<> inline ItemPosition CSSPrimitiveValue::convertTo() const
switch (m_value.valueID) {
case CSSValueAuto:
return ItemPositionAuto;
+ case CSSValueNormal:
+ return ItemPositionNormal;
case CSSValueStretch:
return ItemPositionStretch;
case CSSValueBaseline:

Powered by Google App Engine
This is Rietveld 408576698