| Index: third_party/WebKit/WebCore/rendering/RenderTable.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/rendering/RenderTable.cpp (revision 9118)
|
| +++ third_party/WebKit/WebCore/rendering/RenderTable.cpp (working copy)
|
| @@ -201,6 +201,12 @@
|
| section->addChild(child);
|
| }
|
|
|
| +void RenderTable::removeChild(RenderObject* oldChild)
|
| +{
|
| + RenderContainer::removeChild(oldChild);
|
| + setNeedsSectionRecalc();
|
| +}
|
| +
|
| void RenderTable::calcWidth()
|
| {
|
| if (isPositioned())
|
| @@ -710,12 +716,6 @@
|
| m_needsSectionRecalc = false;
|
| }
|
|
|
| -RenderObject* RenderTable::removeChildNode(RenderObject* child, bool fullRemove)
|
| -{
|
| - setNeedsSectionRecalc();
|
| - return RenderContainer::removeChildNode(child, fullRemove);
|
| -}
|
| -
|
| int RenderTable::calcBorderLeft() const
|
| {
|
| if (collapseBorders()) {
|
|
|