| Index: third_party/WebKit/WebCore/rendering/RenderTableSection.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/rendering/RenderTableSection.cpp (revision 9118)
|
| +++ third_party/WebKit/WebCore/rendering/RenderTableSection.cpp (working copy)
|
| @@ -147,6 +147,12 @@
|
| RenderContainer::addChild(child, beforeChild);
|
| }
|
|
|
| +void RenderTableSection::removeChild(RenderObject* oldChild)
|
| +{
|
| + setNeedsCellRecalc();
|
| + RenderContainer::removeChild(oldChild);
|
| +}
|
| +
|
| bool RenderTableSection::ensureRows(int numRows)
|
| {
|
| int nRows = m_gridRows;
|
| @@ -1082,12 +1088,6 @@
|
| }
|
| }
|
|
|
| -RenderObject* RenderTableSection::removeChildNode(RenderObject* child, bool fullRemove)
|
| -{
|
| - setNeedsCellRecalc();
|
| - return RenderContainer::removeChildNode(child, fullRemove);
|
| -}
|
| -
|
| // Hit Testing
|
| bool RenderTableSection::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
|
| {
|
|
|