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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h

Issue 1841333002: Various fixes for aria-activedescendant. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated tests. Stopped firing a focus changed event when the active descendant changes. Created 4 years, 9 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/AXLayoutObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
index 87036495f18d73fcfb8dc1494496c92057f465e2..8c41f1ca1bead8b2002077b3455dbf662adbe07a 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
@@ -57,7 +57,6 @@ public:
LayoutObject* getLayoutObject() const final { return m_layoutObject; }
LayoutRect elementRect() const override;
LayoutBoxModelObject* getLayoutBoxModelObject() const;
- bool shouldNotifyActiveDescendant() const;
ScrollableArea* getScrollableAreaIfScrollable() const final;
AccessibilityRole determineAccessibilityRole() override;
AccessibilityRole nativeAccessibilityRoleIgnoringAria() const override;
@@ -119,7 +118,6 @@ protected:
String stringValue() const override;
// ARIA attributes.
- AXObject* activeDescendant() const override;
void ariaFlowToElements(AXObjectVector&) const override;
void ariaControlsElements(AXObjectVector&) const override;
void ariaDescribedbyElements(AXObjectVector&) const override;
@@ -129,7 +127,6 @@ protected:
bool ariaHasPopup() const override;
bool ariaRoleHasPresentationalChildren() const override;
AXObject* ancestorForWhichThisIsAPresentationalChild() const override;
- bool shouldFocusActiveDescendant() const override;
bool supportsARIADragging() const override;
bool supportsARIADropping() const override;
bool supportsARIAFlowTo() const override;

Powered by Google App Engine
This is Rietveld 408576698