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

Unified Diff: third_party/closure_compiler/externs/automation.js

Issue 2694903010: AX checked state changes (Closed)
Patch Set: Fix compiler error Created 3 years, 10 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/closure_compiler/externs/automation.js
diff --git a/third_party/closure_compiler/externs/automation.js b/third_party/closure_compiler/externs/automation.js
index 02560822ce0d9624b2c3bd9096cda1b72454c26a..646139d0b2250f6dc4ccf24d519949b186cd1c15 100644
--- a/third_party/closure_compiler/externs/automation.js
+++ b/third_party/closure_compiler/externs/automation.js
@@ -213,7 +213,6 @@ chrome.automation.RoleType = {
*/
chrome.automation.StateType = {
BUSY: 'busy',
- CHECKED: 'checked',
COLLAPSED: 'collapsed',
DEFAULT: 'default',
DISABLED: 'disabled',
@@ -883,11 +882,12 @@ chrome.automation.AutomationNode.prototype.imageDataUrl;
chrome.automation.AutomationNode.prototype.language;
/**
- * If a checkbox or toggle button is in the mixed state.
- * @type {(boolean|undefined)}
- * @see https://developer.chrome.com/extensions/automation#type-buttonMixed
+ * The checked tristate for a checkbox or radio button
+ * where possible values are 'true', 'false' or 'mixed'
+ * @type {(string|undefined)}
+ * @see https://developer.chrome.com/extensions/automation#type-checkedState
*/
-chrome.automation.AutomationNode.prototype.buttonMixed;
+chrome.automation.AutomationNode.prototype.checked;
/**
* The RGBA foreground color of this subtree, as an integer.

Powered by Google App Engine
This is Rietveld 408576698