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

Unified Diff: Source/core/rendering/RenderMultiColumnSpannerPlaceholder.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/RenderMultiColumnSpannerPlaceholder.h ('k') | Source/core/rendering/RenderObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderMultiColumnSpannerPlaceholder.cpp
diff --git a/Source/core/rendering/RenderMultiColumnSpannerPlaceholder.cpp b/Source/core/rendering/RenderMultiColumnSpannerPlaceholder.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..94e69ad1f1ce3109eff91a63c3cccac0b7ea8ac0
--- /dev/null
+++ b/Source/core/rendering/RenderMultiColumnSpannerPlaceholder.cpp
@@ -0,0 +1,55 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+
+#include "core/rendering/RenderMultiColumnSpannerPlaceholder.h"
+
+#include "core/rendering/RenderMultiColumnFlowThread.h"
+
+namespace blink {
+
+RenderMultiColumnSpannerPlaceholder* RenderMultiColumnSpannerPlaceholder::createAnonymous(RenderMultiColumnFlowThread* flowThread, RenderBox* spanner, RenderStyle* parentStyle)
+{
+ RenderMultiColumnSpannerPlaceholder* renderer = new RenderMultiColumnSpannerPlaceholder(flowThread, spanner);
+ renderer->setDocumentForAnonymous(&flowThread->document());
+ RefPtr<RenderStyle> newStyle(RenderStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
+
+ // We don't want floats in the row preceding the spanner to continue on the other side.
+ newStyle->setClear(CBOTH);
+
+ // A spanner must be padded with a pagination strut, so that contents that come after the
+ // spanner don't bleed into the column preceding the spanner.
+ newStyle->setColumnBreakBefore(PBALWAYS);
+
+ renderer->setStyle(newStyle.release());
+ return renderer;
+}
+
+RenderMultiColumnSpannerPlaceholder::RenderMultiColumnSpannerPlaceholder(RenderMultiColumnFlowThread* flowThread, RenderBox* spanner)
+ : RenderBox(0)
+ , m_flowThread(flowThread)
+ , m_spanner(spanner)
+{
+}
+
+void RenderMultiColumnSpannerPlaceholder::markForPaginationRelayoutIfNeeded(SubtreeLayoutScope& layoutScope)
+{
+ // Cannot skip spanner placeholder layout. We need to enter in order to advance to the column
+ // set following the spanner.
+ layoutScope.setChildNeedsLayout(this);
+}
+
+void RenderMultiColumnSpannerPlaceholder::layout()
+{
+ RenderBox::layout();
+ m_flowThread->advanceToNextColumnSet(this);
+}
+
+const char* RenderMultiColumnSpannerPlaceholder::renderName() const
+{
+ return "RenderMultiColumnSpannerPlaceholder";
+}
+
+} // namespace blink
« no previous file with comments | « Source/core/rendering/RenderMultiColumnSpannerPlaceholder.h ('k') | Source/core/rendering/RenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698