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

Unified Diff: Source/core/rendering/RenderBlockFlow.cpp

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: code review Created 6 years, 3 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 | « Source/core/rendering/RenderBlockFlow.h ('k') | Source/core/rendering/RenderFlowThread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderBlockFlow.cpp
diff --git a/Source/core/rendering/RenderBlockFlow.cpp b/Source/core/rendering/RenderBlockFlow.cpp
index 2010d11a1b3794cccad11d30582a2c6f5bd2382e..fb59c4bf12cbc3ed5207a821c2c49ceea74012fd 100644
--- a/Source/core/rendering/RenderBlockFlow.cpp
+++ b/Source/core/rendering/RenderBlockFlow.cpp
@@ -1987,9 +1987,23 @@ void RenderBlockFlow::addChild(RenderObject* newChild, RenderObject* beforeChild
flowThread->addChild(newChild, beforeChild);
return;
}
+ if (beforeChild) {
+ if (RenderFlowThread* containingFlowThread = flowThreadContainingBlock())
+ beforeChild = containingFlowThread->resolveMovedChild(beforeChild);
+ }
RenderBlock::addChild(newChild, beforeChild);
}
+void RenderBlockFlow::removeChild(RenderObject* oldChild)
+{
+ if (!documentBeingDestroyed()) {
+ RenderFlowThread* flowThread = multiColumnFlowThread();
+ if (flowThread && flowThread != oldChild)
+ flowThread->flowThreadDescendantOrSiblingWillBeRemoved(oldChild);
+ }
+ RenderBlock::removeChild(oldChild);
+}
+
void RenderBlockFlow::moveAllChildrenIncludingFloatsTo(RenderBlock* toBlock, bool fullRemoveInsert)
{
RenderBlockFlow* toBlockFlow = toRenderBlockFlow(toBlock);
« no previous file with comments | « Source/core/rendering/RenderBlockFlow.h ('k') | Source/core/rendering/RenderFlowThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698