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

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

Issue 1488893002: Stops using SYSTEM_STATE_INDETERMINATE as it makes radio buttons appear to have a mixed state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a few test expectations. Created 5 years 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.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
index 7ce6133a55ecbc9ecb18206eafc38692a709f8a8..fd5c3a9d7966b2f7a7966908d2a8bdb839dbe979 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
@@ -123,7 +123,6 @@ protected:
bool isClickable() const final;
bool isEnabled() const override;
AccessibilityExpanded isExpanded() const override;
- bool isIndeterminate() const final;
bool isPressed() const final;
bool isReadOnly() const override;
bool isRequired() const final;
@@ -205,6 +204,7 @@ protected:
private:
RawPtrWillBeMember<Node> m_node;
+ bool isNativeCheckboxInMixedState() const;
String textFromDescendants(AXObjectSet& visited) const;
String nativeTextAlternative(AXObjectSet& visited, AXNameFrom&, AXRelatedObjectVector*, NameSources*, bool* foundTextAlternative) const;
float stepValueForRange() const;

Powered by Google App Engine
This is Rietveld 408576698