| Index: Source/WebCore/rendering/RenderTableSection.cpp
|
| ===================================================================
|
| --- Source/WebCore/rendering/RenderTableSection.cpp (revision 98739)
|
| +++ Source/WebCore/rendering/RenderTableSection.cpp (working copy)
|
| @@ -119,8 +119,7 @@
|
|
|
| if (beforeChild && !beforeChild->isAnonymous() && beforeChild->parent() == this) {
|
| RenderObject* row = beforeChild->previousSibling();
|
| - if (row && row->isTableRow()) {
|
| - ASSERT(row->isAnonymous());
|
| + if (row && row->isTableRow() && row->isAnonymous()) {
|
| row->addChild(child);
|
| return;
|
| }
|
|
|