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

Unified Diff: third_party/WebKit/Source/core/dom/AccessibleNode.idl

Issue 2894103002: Int and Float properties for Accessibility Object Model phase 1 (Closed)
Patch Set: Update webexposed/ Created 3 years, 7 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/WebKit/Source/core/dom/AccessibleNode.idl
diff --git a/third_party/WebKit/Source/core/dom/AccessibleNode.idl b/third_party/WebKit/Source/core/dom/AccessibleNode.idl
index 70a6978b68355392741ede1020f0b9c2b9b1333a..4bbf09f5055879df30e42fcbb8e7155d890f350f 100644
--- a/third_party/WebKit/Source/core/dom/AccessibleNode.idl
+++ b/third_party/WebKit/Source/core/dom/AccessibleNode.idl
@@ -12,6 +12,9 @@
attribute DOMString? autocomplete;
attribute boolean? busy;
attribute DOMString? checked;
+ attribute long? colCount;
+ attribute unsigned long? colIndex;
+ attribute unsigned long? colSpan;
attribute DOMString? current;
attribute boolean? disabled;
attribute boolean? expanded;
@@ -19,18 +22,27 @@
attribute DOMString? invalid;
attribute DOMString? keyShortcuts;
attribute DOMString? label;
+ attribute unsigned long? level;
attribute DOMString? live;
attribute boolean? modal;
attribute boolean? multiline;
attribute boolean? multiselectable;
attribute DOMString? orientation;
attribute DOMString? placeholder;
+ attribute unsigned long? posInSet;
attribute boolean? readOnly;
attribute DOMString? relevant;
attribute boolean? required;
attribute DOMString? role;
attribute DOMString? roleDescription;
+ attribute long? rowCount;
+ attribute unsigned long? rowIndex;
+ attribute unsigned long? rowSpan;
attribute boolean? selected;
+ attribute long? setSize;
attribute DOMString? sort;
+ attribute double? valueMax;
+ attribute double? valueMin;
+ attribute double? valueNow;
attribute DOMString? valueText;
};

Powered by Google App Engine
This is Rietveld 408576698