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

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

Issue 2399633002: Store physical location in LayoutTableRow, just like in all other objects. (Closed)
Patch Set: Back out unintended png change Created 4 years, 2 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 | « third_party/WebKit/Source/core/layout/LayoutBoxTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index 94d4263d1d2d338a29a17a9e2ea44cd9f0a5dbd5..0887af95f93c198d241207b59725f2c677578b2f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -1093,7 +1093,7 @@ void LayoutTableSection::layoutRows() {
LayoutTableRow* rowLayoutObject = m_grid[r].rowLayoutObject;
int paginationStrutOnRow = 0;
if (rowLayoutObject) {
- rowLayoutObject->setLocation(LayoutPoint(0, m_rowPos[r]));
+ rowLayoutObject->setLogicalLocation(LayoutPoint(0, m_rowPos[r]));
rowLayoutObject->setLogicalWidth(logicalWidth());
rowLayoutObject->setLogicalHeight(
LayoutUnit(m_rowPos[r + 1] - m_rowPos[r] - vspacing));
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBoxTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698