Index: third_party/WebKit/Source/modules/accessibility/AXTable.cpp |
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp |
index ce598f4e3b2e1941262ce15f35d13d5b65eb300c..79b6ea7a3de1b0f72ed3e00acc1269e24a59628b 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXTable.cpp |
+++ b/third_party/WebKit/Source/modules/accessibility/AXTable.cpp |
@@ -100,7 +100,7 @@ static bool elementHasAriaRole(const Element* element) |
bool AXTable::isDataTable() const |
{ |
- if (!m_layoutObject || !node()) |
+ if (!m_layoutObject || !getNode()) |
return false; |
// Do not consider it a data table if it has an ARIA role. |
@@ -110,7 +110,7 @@ bool AXTable::isDataTable() const |
// When a section of the document is contentEditable, all tables should be |
// treated as data tables, otherwise users may not be able to work with rich |
// text editors that allow creating and editing tables. |
- if (node() && node()->hasEditableStyle()) |
+ if (getNode() && getNode()->hasEditableStyle()) |
return true; |
// This employs a heuristic to determine if this table should appear. |