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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Accessibility Object Model node 5 // Accessibility Object Model node
6 // Explainer: https://github.com/WICG/aom/blob/master/explainer.md 6 // Explainer: https://github.com/WICG/aom/blob/master/explainer.md
7 // Spec: https://wicg.github.io/aom/spec/ 7 // Spec: https://wicg.github.io/aom/spec/
8 [ 8 [
9 RuntimeEnabled=AccessibilityObjectModel 9 RuntimeEnabled=AccessibilityObjectModel
10 ] interface AccessibleNode { 10 ] interface AccessibleNode {
11 attribute boolean? atomic; 11 attribute boolean? atomic;
12 attribute DOMString? autocomplete; 12 attribute DOMString? autocomplete;
13 attribute boolean? busy; 13 attribute boolean? busy;
14 attribute DOMString? checked; 14 attribute DOMString? checked;
15 attribute long? colCount;
16 attribute unsigned long? colIndex;
17 attribute unsigned long? colSpan;
15 attribute DOMString? current; 18 attribute DOMString? current;
16 attribute boolean? disabled; 19 attribute boolean? disabled;
17 attribute boolean? expanded; 20 attribute boolean? expanded;
18 attribute boolean? hidden; 21 attribute boolean? hidden;
19 attribute DOMString? invalid; 22 attribute DOMString? invalid;
20 attribute DOMString? keyShortcuts; 23 attribute DOMString? keyShortcuts;
21 attribute DOMString? label; 24 attribute DOMString? label;
25 attribute unsigned long? level;
22 attribute DOMString? live; 26 attribute DOMString? live;
23 attribute boolean? modal; 27 attribute boolean? modal;
24 attribute boolean? multiline; 28 attribute boolean? multiline;
25 attribute boolean? multiselectable; 29 attribute boolean? multiselectable;
26 attribute DOMString? orientation; 30 attribute DOMString? orientation;
27 attribute DOMString? placeholder; 31 attribute DOMString? placeholder;
32 attribute unsigned long? posInSet;
28 attribute boolean? readOnly; 33 attribute boolean? readOnly;
29 attribute DOMString? relevant; 34 attribute DOMString? relevant;
30 attribute boolean? required; 35 attribute boolean? required;
31 attribute DOMString? role; 36 attribute DOMString? role;
32 attribute DOMString? roleDescription; 37 attribute DOMString? roleDescription;
38 attribute long? rowCount;
39 attribute unsigned long? rowIndex;
40 attribute unsigned long? rowSpan;
33 attribute boolean? selected; 41 attribute boolean? selected;
42 attribute long? setSize;
34 attribute DOMString? sort; 43 attribute DOMString? sort;
44 attribute double? valueMax;
45 attribute double? valueMin;
46 attribute double? valueNow;
35 attribute DOMString? valueText; 47 attribute DOMString? valueText;
36 }; 48 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698