diff options
author | aboxhall@chromium.org <aboxhall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 00:44:47 +0000 |
---|---|---|
committer | aboxhall@chromium.org <aboxhall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 00:44:47 +0000 |
commit | 1d51eec4d1cfa0da9f461ef617ac40cde208e178 (patch) | |
tree | c1e0291af7dfc71ae4029db4f3b29470f3568f69 /content/browser/accessibility/browser_accessibility_cocoa.h | |
parent | 6b5d002b9b35024c284717dbee2bb2f1eb816902 (diff) | |
download | chromium_src-1d51eec4d1cfa0da9f461ef617ac40cde208e178.zip chromium_src-1d51eec4d1cfa0da9f461ef617ac40cde208e178.tar.gz chromium_src-1d51eec4d1cfa0da9f461ef617ac40cde208e178.tar.bz2 |
- New tests for address, aria-autocomplete, aria-invalid, ARIA menuitemradio, ARIA progressbar, ARIA toolbar, bdo, br, input type="button" (in a menu), input type="image" (in a menu), select (with NO multiple attribute) and wbr
- Tweaks to dump_accessibility_tree_helper_win.cc to print out min and max values and use the public API to get the current value
- Tweaks to dump_accessibility_tree_helper_mac.mm to print out the minimum and maximum values, valueDescription and invalid state
- Tweaks to browser_accessibility_cocoa.{mm,h} to add an invalid() method
- Fix a bug in accessibility_node_serializer.cc where minimum and maximum values were getting swapped.
BUG=168805
Review URL: https://chromiumcodereview.appspot.com/11823026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176769 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/accessibility/browser_accessibility_cocoa.h')
-rw-r--r-- | content/browser/accessibility/browser_accessibility_cocoa.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/browser/accessibility/browser_accessibility_cocoa.h b/content/browser/accessibility/browser_accessibility_cocoa.h index db0753b..79b39ae 100644 --- a/content/browser/accessibility/browser_accessibility_cocoa.h +++ b/content/browser/accessibility/browser_accessibility_cocoa.h @@ -43,6 +43,7 @@ // isIgnored returns whether or not the accessibility object // should be ignored by the accessibility hierarchy. @property(nonatomic, readonly, getter=isIgnored) BOOL ignored; +@property(nonatomic, readonly) NSString* invalid; // The origin of this object in the page's document. // This is relative to webkit's top-left origin, not Cocoa's // bottom-left origin. |