Index: third_party/WebKit/Source/modules/accessibility/AXMenuListPopup.cpp |
diff --git a/third_party/WebKit/Source/modules/accessibility/AXMenuListPopup.cpp b/third_party/WebKit/Source/modules/accessibility/AXMenuListPopup.cpp |
index 2bda5d37f54f23b0846dfd6fc5bcea7885b6e5c7..5ba4242bd285f4594387a062b2bf05850448b13d 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXMenuListPopup.cpp |
+++ b/third_party/WebKit/Source/modules/accessibility/AXMenuListPopup.cpp |
@@ -82,7 +82,7 @@ int AXMenuListPopup::getSelectedIndex() const |
if (!m_parent) |
return -1; |
- Node* parentNode = m_parent->node(); |
+ Node* parentNode = m_parent->getNode(); |
if (!isHTMLSelectElement(parentNode)) |
return -1; |
@@ -105,7 +105,7 @@ void AXMenuListPopup::addChildren() |
if (!m_parent) |
return; |
- Node* parentNode = m_parent->node(); |
+ Node* parentNode = m_parent->getNode(); |
if (!isHTMLSelectElement(parentNode)) |
return; |