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

Unified Diff: Source/core/rendering/RenderPagedFlowThread.h

Issue 584033002: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master 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/RenderObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderPagedFlowThread.h
diff --git a/Source/core/rendering/RenderPagedFlowThread.h b/Source/core/rendering/RenderPagedFlowThread.h
index d20d7bb32c8935a03488e8b1384d6a699ca73d12..60be170ce10d613ab220fb72e2515297d2713ba3 100644
--- a/Source/core/rendering/RenderPagedFlowThread.h
+++ b/Source/core/rendering/RenderPagedFlowThread.h
@@ -20,11 +20,13 @@ public:
RenderBlockFlow* pagedBlockFlow() const { return toRenderBlockFlow(parent()); }
virtual bool isRenderPagedFlowThread() const OVERRIDE { return true; }
- virtual bool heightIsAuto() const OVERRIDE { return !columnHeightAvailable(); }
virtual const char* renderName() const OVERRIDE;
virtual bool needsNewWidth() const OVERRIDE;
virtual void updateLogicalWidth() OVERRIDE;
virtual void layout();
+
+private:
+ virtual bool isDescendantValidColumnSpanner(RenderObject* /*descendant*/) const OVERRIDE { return false; }
};
} // namespace blink
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698