Index: Source/core/rendering/RenderTable.cpp |
diff --git a/Source/core/rendering/RenderTable.cpp b/Source/core/rendering/RenderTable.cpp |
index ff772f2172c0d5573296b09603a75d619698369c..299fafbb657551ee5fed26a52eb4c4ad6be2dc22 100644 |
--- a/Source/core/rendering/RenderTable.cpp |
+++ b/Source/core/rendering/RenderTable.cpp |
@@ -851,10 +851,6 @@ RenderTableCol* RenderTable::firstColumn() const |
for (RenderObject* child = firstChild(); child; child = child->nextSibling()) { |
if (child->isRenderTableCol()) |
return toRenderTableCol(child); |
- |
- // We allow only table-captions before columns or column-groups. |
- if (!child->isTableCaption()) |
- return 0; |
} |
return 0; |