| 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
|
|
|