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

Unified Diff: Source/core/accessibility/AXObject.h

Issue 596393004: Add AX attribute for input type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move TextInputType to AXNodeObject Created 6 years, 3 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: Source/core/accessibility/AXObject.h
diff --git a/Source/core/accessibility/AXObject.h b/Source/core/accessibility/AXObject.h
index c5e9107d7772a1dd54afeaa86434e6580e492e87..e19c29ab70230cb27fe45e4dda8ff955d7c1be80 100644
--- a/Source/core/accessibility/AXObject.h
+++ b/Source/core/accessibility/AXObject.h
@@ -422,6 +422,7 @@ public:
virtual float maxValueForRange() const { return 0.0f; }
virtual float minValueForRange() const { return 0.0f; }
virtual String stringValue() const { return String(); }
+ virtual const AtomicString& textInputType() const { return nullAtom; }
// ARIA attributes.
virtual AXObject* activeDescendant() const { return 0; }

Powered by Google App Engine
This is Rietveld 408576698