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

Unified Diff: chrome/common/extensions/api/automation.idl

Issue 2694903010: AX checked state changes (Closed)
Patch Set: Test checkbox attribute in automation API, fix whitespace, remove change to third party code Created 3 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: chrome/common/extensions/api/automation.idl
diff --git a/chrome/common/extensions/api/automation.idl b/chrome/common/extensions/api/automation.idl
index f440639a77202288844db6eea0fc9052faffc98f..c4941dd1a557781f5e6663e476379cd7d84857fd 100644
--- a/chrome/common/extensions/api/automation.idl
+++ b/chrome/common/extensions/api/automation.idl
@@ -199,7 +199,6 @@
// Describes characteristics of an $(ref:automation.AutomationNode).
enum StateType {
busy,
- checked,
collapsed,
default,
disabled,
@@ -634,8 +633,9 @@
// The language code for this subtree.
DOMString? language;
- // If a checkbox or toggle button is in the mixed state.
- boolean? buttonMixed;
+ // Tri-state describing checkbox or radio button:
+ // 'false' | 'true' | 'mixed'
+ DOMString? checked;
// The RGBA foreground color of this subtree, as an integer.
long? color;

Powered by Google App Engine
This is Rietveld 408576698