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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 2620623002: Implement display:flow-root (Closed)
Patch Set: bug 672508 Created 3 years, 11 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/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index b5e23dc21e43ff9c6526c74dbc4cf05f9c910de0..068a3ef4defd9c19b0b9c07075acf2173d429e61 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -183,6 +183,7 @@ LayoutObject* LayoutObject::createObject(Element* element,
case EDisplay::Inline:
return new LayoutInline(element);
case EDisplay::Block:
+ case EDisplay::FlowRoot:
case EDisplay::InlineBlock:
if (RuntimeEnabledFeatures::layoutNGEnabled())
return new LayoutNGBlockFlow(element);

Powered by Google App Engine
This is Rietveld 408576698