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

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

Issue 2382733002: Introduce markChildForPaginationRelayoutIfNeeded(). (Closed)
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
index 8013404db7793809ee60d9a121a65153f701ec67..432c270d1f9a1730d46c48e58534bf4f8c861618 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
@@ -483,7 +483,7 @@ void LayoutTable::layout()
for (LayoutObject* child = firstChild(); child; child = child->nextSibling()) {
if (!child->needsLayout() && child->isBox())
- toLayoutBox(child)->markForPaginationRelayoutIfNeeded(layouter);
+ markChildForPaginationRelayoutIfNeeded(*toLayoutBox(child), layouter);
if (child->isTableSection()) {
LayoutTableSection* section = toLayoutTableSection(child);
if (m_columnLogicalWidthChanged)
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableRow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698