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

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

Issue 2630723002: Fix blink_perf.paint regression about tables (Closed)
Patch Set: Issues fixed in patch set 4 Created 3 years, 11 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/LayoutTableSection.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.h b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
index 52e5d5dc844c3b0fa61fe1717e71fe800053be86..06b2e597e78d25532c773ac74e355584b01b7f93 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
@@ -218,8 +218,6 @@ class CORE_EXPORT LayoutTableSection final : public LayoutTableBoxComponent {
return m_grid[row].row[effectiveColumn];
}
LayoutTableCell* primaryCellAt(unsigned row, unsigned effectiveColumn) {
- if (effectiveColumn >= numCols(row))
mstensho (USE GERRIT) 2017/01/20 10:02:04 I find it strange that this makes a lot of differe
a.suchit 2017/01/23 06:35:32 Done.
- return nullptr;
CellStruct& c = m_grid[row].row[effectiveColumn];
return c.primaryCell();
}

Powered by Google App Engine
This is Rietveld 408576698