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

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

Issue 2805493002: Boolean properties for Accessibility Object Model Phase 1 (Closed)
Patch Set: Back to previous patchset, ready to land 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 DOMString? autocomplete; 12 attribute DOMString? autocomplete;
13 attribute boolean? busy;
12 attribute DOMString? checked; 14 attribute DOMString? checked;
13 attribute DOMString? current; 15 attribute DOMString? current;
16 attribute boolean? disabled;
17 attribute boolean? expanded;
18 attribute boolean? hidden;
14 attribute DOMString? invalid; 19 attribute DOMString? invalid;
15 attribute DOMString? keyShortcuts; 20 attribute DOMString? keyShortcuts;
16 attribute DOMString? label; 21 attribute DOMString? label;
17 attribute DOMString? live; 22 attribute DOMString? live;
23 attribute boolean? modal;
24 attribute boolean? multiline;
25 attribute boolean? multiselectable;
18 attribute DOMString? orientation; 26 attribute DOMString? orientation;
19 attribute DOMString? placeholder; 27 attribute DOMString? placeholder;
28 attribute boolean? readOnly;
20 attribute DOMString? relevant; 29 attribute DOMString? relevant;
30 attribute boolean? required;
21 attribute DOMString? role; 31 attribute DOMString? role;
22 attribute DOMString? roleDescription; 32 attribute DOMString? roleDescription;
33 attribute boolean? selected;
23 attribute DOMString? sort; 34 attribute DOMString? sort;
24 attribute DOMString? valueText; 35 attribute DOMString? valueText;
25 }; 36 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698