Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(867)

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp

Issue 1899823002: Uses the activedescendant_changed event received from Blink to fire the right focus event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed extraneous focus events. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
index 0e68691113381ecaef9955e8a2d8d8af865009b7..2f856d5787d57e1fa506b90e61202c2b4553ada4 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
@@ -143,7 +143,7 @@ void AXNodeObject::alterSliderValue(bool increase)
axObjectCache().postNotification(getNode(), AXObjectCacheImpl::AXValueChanged);
}
-AXObject* AXNodeObject::activeDescendant() const
+AXObject* AXNodeObject::activeDescendant()
{
if (!getNode() || !getNode()->isElementNode())
return nullptr;

Powered by Google App Engine
This is Rietveld 408576698