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

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

Issue 1144423007: Allow setNeedsLayout on positioned objects when no parent container (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.cpp
diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
index f668620b095015648d489dd76352b72f812f59c8..17ffefc967760e2c9e060b61836ebdbe6e53d195 100644
--- a/Source/core/layout/LayoutObject.cpp
+++ b/Source/core/layout/LayoutObject.cpp
@@ -758,7 +758,7 @@ void LayoutObject::markContainerChainForLayout(bool scheduleRelayout, LayoutObje
// Don't mark the outermost object of an unrooted subtree. That object will be
// marked when the subtree is added to the document.
LayoutObject* container = object->container();
- if (!container && !object->isLayoutView())
+ if (!container && !(object->isLayoutView() || object->isPositioned()))
return;
if (!last->isTextOrSVGChild() && last->style()->hasOutOfFlowPosition()) {
bool willSkipRelativelyPositionedInlines = !object->isLayoutBlock() || object->isAnonymousBlock();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698