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

Side by Side Diff: third_party/WebKit/Source/core/dom/AccessibleNode.idl

Issue 2967193003: Relation list properties for Accessibility Object Model phase 1 (Closed)
Patch Set: Created 3 years, 5 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 AccessibleNode? activeDescendant; 11 attribute AccessibleNode? activeDescendant;
12 attribute boolean? atomic; 12 attribute boolean? atomic;
13 attribute DOMString? autocomplete; 13 attribute DOMString? autocomplete;
14 attribute boolean? busy; 14 attribute boolean? busy;
15 attribute DOMString? checked; 15 attribute DOMString? checked;
16 attribute long? colCount; 16 attribute long? colCount;
17 attribute unsigned long? colIndex; 17 attribute unsigned long? colIndex;
18 attribute unsigned long? colSpan; 18 attribute unsigned long? colSpan;
19 attribute AccessibleNodeList? controls;
19 attribute DOMString? current; 20 attribute DOMString? current;
21 attribute AccessibleNodeList? describedBy;
20 attribute AccessibleNode? details; 22 attribute AccessibleNode? details;
21 attribute boolean? disabled; 23 attribute boolean? disabled;
22 attribute AccessibleNode? errorMessage; 24 attribute AccessibleNode? errorMessage;
23 attribute boolean? expanded; 25 attribute boolean? expanded;
26 attribute AccessibleNodeList? flowTo;
24 attribute boolean? hidden; 27 attribute boolean? hidden;
25 attribute DOMString? invalid; 28 attribute DOMString? invalid;
26 attribute DOMString? keyShortcuts; 29 attribute DOMString? keyShortcuts;
27 attribute DOMString? label; 30 attribute DOMString? label;
31 attribute AccessibleNodeList? labeledBy;
28 attribute unsigned long? level; 32 attribute unsigned long? level;
29 attribute DOMString? live; 33 attribute DOMString? live;
30 attribute boolean? modal; 34 attribute boolean? modal;
31 attribute boolean? multiline; 35 attribute boolean? multiline;
32 attribute boolean? multiselectable; 36 attribute boolean? multiselectable;
33 attribute DOMString? orientation; 37 attribute DOMString? orientation;
38 attribute AccessibleNodeList? owns;
34 attribute DOMString? placeholder; 39 attribute DOMString? placeholder;
35 attribute unsigned long? posInSet; 40 attribute unsigned long? posInSet;
36 attribute DOMString? pressed; 41 attribute DOMString? pressed;
37 attribute boolean? readOnly; 42 attribute boolean? readOnly;
38 attribute DOMString? relevant; 43 attribute DOMString? relevant;
39 attribute boolean? required; 44 attribute boolean? required;
40 attribute DOMString? role; 45 attribute DOMString? role;
41 attribute DOMString? roleDescription; 46 attribute DOMString? roleDescription;
42 attribute long? rowCount; 47 attribute long? rowCount;
43 attribute unsigned long? rowIndex; 48 attribute unsigned long? rowIndex;
44 attribute unsigned long? rowSpan; 49 attribute unsigned long? rowSpan;
45 attribute boolean? selected; 50 attribute boolean? selected;
46 attribute long? setSize; 51 attribute long? setSize;
47 attribute DOMString? sort; 52 attribute DOMString? sort;
48 attribute double? valueMax; 53 attribute double? valueMax;
49 attribute double? valueMin; 54 attribute double? valueMin;
50 attribute double? valueNow; 55 attribute double? valueNow;
51 attribute DOMString? valueText; 56 attribute DOMString? valueText;
52 }; 57 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698