| Index: Source/core/accessibility/AXTable.cpp
|
| diff --git a/Source/core/accessibility/AXTable.cpp b/Source/core/accessibility/AXTable.cpp
|
| index 58ba00253c47229a1860b453ba6ffb77752ace0c..2c7566deb870f7bb7ca6b40f3126dc22e9c589cd 100644
|
| --- a/Source/core/accessibility/AXTable.cpp
|
| +++ b/Source/core/accessibility/AXTable.cpp
|
| @@ -456,17 +456,6 @@ unsigned AXTable::rowCount()
|
| return m_rows.size();
|
| }
|
|
|
| -int AXTable::tableLevel() const
|
| -{
|
| - int level = 0;
|
| - for (AXObject* obj = static_cast<AXObject*>(const_cast<AXTable*>(this)); obj; obj = obj->parentObject()) {
|
| - if (obj->isAXTable())
|
| - ++level;
|
| - }
|
| -
|
| - return level;
|
| -}
|
| -
|
| AXTableCell* AXTable::cellForColumnAndRow(unsigned column, unsigned row)
|
| {
|
| updateChildrenIfNecessary();
|
|
|