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

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

Issue 729693003: First step at getting rid of anonymous blocks and continuations. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebaseline flights-app.sky 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
Index: sky/engine/core/css/CSSPrimitiveValueMappings.h
diff --git a/sky/engine/core/css/CSSPrimitiveValueMappings.h b/sky/engine/core/css/CSSPrimitiveValueMappings.h
index 6839482cc004fb2e2158565e935cd6f80f91a9c1..26833b3618344d43a091db86ff2bf268fc7fe70e 100644
--- a/sky/engine/core/css/CSSPrimitiveValueMappings.h
+++ b/sky/engine/core/css/CSSPrimitiveValueMappings.h
@@ -926,6 +926,9 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EDisplay e)
case INLINE:
m_value.valueID = CSSValueInline;
break;
+ case PARAGRAPH:
+ m_value.valueID = CSSValueParagraph;
+ break;
case BLOCK:
m_value.valueID = CSSValueBlock;
break;

Powered by Google App Engine
This is Rietveld 408576698