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

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

Issue 2945773002: Relation properties for Accessibility Object Model phase 1 (Closed)
Patch Set: Fix merge error, format Created 3 years, 6 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 boolean? atomic; 12 attribute boolean? atomic;
12 attribute DOMString? autocomplete; 13 attribute DOMString? autocomplete;
13 attribute boolean? busy; 14 attribute boolean? busy;
14 attribute DOMString? checked; 15 attribute DOMString? checked;
15 attribute long? colCount; 16 attribute long? colCount;
16 attribute unsigned long? colIndex; 17 attribute unsigned long? colIndex;
17 attribute unsigned long? colSpan; 18 attribute unsigned long? colSpan;
18 attribute DOMString? current; 19 attribute DOMString? current;
20 attribute AccessibleNode? details;
19 attribute boolean? disabled; 21 attribute boolean? disabled;
22 attribute AccessibleNode? errorMessage;
20 attribute boolean? expanded; 23 attribute boolean? expanded;
21 attribute boolean? hidden; 24 attribute boolean? hidden;
22 attribute DOMString? invalid; 25 attribute DOMString? invalid;
23 attribute DOMString? keyShortcuts; 26 attribute DOMString? keyShortcuts;
24 attribute DOMString? label; 27 attribute DOMString? label;
25 attribute unsigned long? level; 28 attribute unsigned long? level;
26 attribute DOMString? live; 29 attribute DOMString? live;
27 attribute boolean? modal; 30 attribute boolean? modal;
28 attribute boolean? multiline; 31 attribute boolean? multiline;
29 attribute boolean? multiselectable; 32 attribute boolean? multiselectable;
(...skipping 10 matching lines...) Expand all
40 attribute unsigned long? rowIndex; 43 attribute unsigned long? rowIndex;
41 attribute unsigned long? rowSpan; 44 attribute unsigned long? rowSpan;
42 attribute boolean? selected; 45 attribute boolean? selected;
43 attribute long? setSize; 46 attribute long? setSize;
44 attribute DOMString? sort; 47 attribute DOMString? sort;
45 attribute double? valueMax; 48 attribute double? valueMax;
46 attribute double? valueMin; 49 attribute double? valueMin;
47 attribute double? valueNow; 50 attribute double? valueNow;
48 attribute DOMString? valueText; 51 attribute DOMString? valueText;
49 }; 52 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698