| Index: Source/WebCore/rendering/RenderTableRow.cpp
|
| ===================================================================
|
| --- Source/WebCore/rendering/RenderTableRow.cpp (revision 98738)
|
| +++ Source/WebCore/rendering/RenderTableRow.cpp (working copy)
|
| @@ -99,8 +99,7 @@
|
|
|
| if (beforeChild && !beforeChild->isAnonymous() && beforeChild->parent() == this) {
|
| RenderObject* cell = beforeChild->previousSibling();
|
| - if (cell && cell->isTableCell()) {
|
| - ASSERT(cell->isAnonymous());
|
| + if (cell && cell->isTableCell() && cell->isAnonymous()) {
|
| cell->addChild(child);
|
| return;
|
| }
|
|
|