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

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

Issue 13937017: Implement lazy block layout prototype behind a runtime flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/Source/core/css/CSSPrimitiveValueMappings.h b/Source/core/css/CSSPrimitiveValueMappings.h
index 3b5b0a08a97d06a05b07c98faa4d408bc87e581d..e66cd53b1c56c6d5e16dde69aae996ac0b1d8d28 100644
--- a/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/Source/core/css/CSSPrimitiveValueMappings.h
@@ -1256,6 +1256,9 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EDisplay e)
case INLINE_GRID:
m_value.ident = CSSValueWebkitInlineGrid;
break;
+ case LAZY_BLOCK:
+ m_value.ident = CSSValueLazyBlock;
+ break;
case NONE:
m_value.ident = CSSValueNone;
break;

Powered by Google App Engine
This is Rietveld 408576698