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

Unified Diff: Source/WebCore/rendering/RenderTableSection.cpp

Issue 8989014: Revert 99212 - Stop abusing RenderTableSection::needsRecalcCells logic (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 9 years 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/WebCore/rendering/RenderTableSection.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/rendering/RenderTableSection.cpp
===================================================================
--- Source/WebCore/rendering/RenderTableSection.cpp (revision 103315)
+++ Source/WebCore/rendering/RenderTableSection.cpp (working copy)
@@ -1155,11 +1155,6 @@
setNeedsLayout(true);
}
-void RenderTableSection::rowLogicalHeightChanged(unsigned rowIndex)
-{
- setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(m_grid[rowIndex]);
-}
-
void RenderTableSection::setNeedsCellRecalc()
{
m_needsCellRecalc = true;
@@ -1291,14 +1286,4 @@
}
-unsigned RenderTableSection::rowIndexForRenderer(const RenderTableRow* row) const
-{
- for (size_t i = 0; i < m_grid.size(); ++i) {
- if (m_grid[i].rowRenderer == row)
- return i;
- }
- ASSERT_NOT_REACHED();
- return 0;
-}
-
} // namespace WebCore
« no previous file with comments | « Source/WebCore/rendering/RenderTableSection.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698