| Index: Source/core/accessibility/AXTable.cpp | 
| diff --git a/Source/core/accessibility/AXTable.cpp b/Source/core/accessibility/AXTable.cpp | 
| index f50097dc18c5f417da4458e27a87ec517fecb4dd..3edf9bc4e35b28fe408f97a60b7d839c51587555 100644 | 
| --- a/Source/core/accessibility/AXTable.cpp | 
| +++ b/Source/core/accessibility/AXTable.cpp | 
| @@ -511,7 +511,7 @@ AXTableCell* AXTable::cellForColumnAndRow(unsigned column, unsigned row) | 
| for (unsigned colIndexCounter = std::min(static_cast<unsigned>(children.size()), column + 1); colIndexCounter > 0; --colIndexCounter) { | 
| unsigned colIndex = colIndexCounter - 1; | 
| AXObject* child = children[colIndex].get(); | 
| -            ASSERT(child->isTableCell()); | 
| + | 
| if (!child->isTableCell()) | 
| continue; | 
|  | 
|  |