| Index: Source/core/rendering/RenderTable.cpp
|
| diff --git a/Source/core/rendering/RenderTable.cpp b/Source/core/rendering/RenderTable.cpp
|
| index 114115dc71170bcf5c2b82cbb308323e6d49e2c3..1be3089dbcb0a5c3924dc26a244dd66467f81e0e 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;
|
|
|