Index: Source/WebCore/rendering/RenderTableRow.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderTableRow.cpp (revision 98739) |
+++ Source/WebCore/rendering/RenderTableRow.cpp (working copy) |
@@ -106,8 +106,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; |
} |