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

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

Issue 2788523002: Finish all string attributes for Accessibility Object Model Phase 1. (Closed)
Patch Set: notifyAttributeChanged Created 3 years, 8 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 DOMString? autocomplete;
12 attribute DOMString? checked;
13 attribute DOMString? current;
14 attribute DOMString? invalid;
15 attribute DOMString? keyShortcuts;
16 attribute DOMString? label;
17 attribute DOMString? live;
18 attribute DOMString? orientation;
19 attribute DOMString? placeholder;
20 attribute DOMString? relevant;
11 attribute DOMString? role; 21 attribute DOMString? role;
12 attribute DOMString? label; 22 attribute DOMString? roleDescription;
23 attribute DOMString? sort;
24 attribute DOMString? valueText;
13 }; 25 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698