| OLD | NEW |
| 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 AccessibleNodeList? controls; |
| 20 attribute DOMString? current; | 20 attribute DOMString? current; |
| 21 attribute AccessibleNodeList? describedBy; | 21 attribute AccessibleNodeList? describedBy; |
| 22 attribute AccessibleNode? details; | 22 attribute AccessibleNode? details; |
| 23 attribute boolean? disabled; | 23 attribute boolean? disabled; |
| 24 attribute AccessibleNode? errorMessage; | 24 attribute AccessibleNode? errorMessage; |
| 25 attribute boolean? expanded; | 25 attribute boolean? expanded; |
| 26 attribute AccessibleNodeList? flowTo; | 26 attribute AccessibleNodeList? flowTo; |
| 27 attribute DOMString? hasPopUp; |
| 27 attribute boolean? hidden; | 28 attribute boolean? hidden; |
| 28 attribute DOMString? invalid; | 29 attribute DOMString? invalid; |
| 29 attribute DOMString? keyShortcuts; | 30 attribute DOMString? keyShortcuts; |
| 30 attribute DOMString? label; | 31 attribute DOMString? label; |
| 31 attribute AccessibleNodeList? labeledBy; | 32 attribute AccessibleNodeList? labeledBy; |
| 32 attribute unsigned long? level; | 33 attribute unsigned long? level; |
| 33 attribute DOMString? live; | 34 attribute DOMString? live; |
| 34 attribute boolean? modal; | 35 attribute boolean? modal; |
| 35 attribute boolean? multiline; | 36 attribute boolean? multiline; |
| 36 attribute boolean? multiselectable; | 37 attribute boolean? multiselectable; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 48 attribute unsigned long? rowIndex; | 49 attribute unsigned long? rowIndex; |
| 49 attribute unsigned long? rowSpan; | 50 attribute unsigned long? rowSpan; |
| 50 attribute boolean? selected; | 51 attribute boolean? selected; |
| 51 attribute long? setSize; | 52 attribute long? setSize; |
| 52 attribute DOMString? sort; | 53 attribute DOMString? sort; |
| 53 attribute double? valueMax; | 54 attribute double? valueMax; |
| 54 attribute double? valueMin; | 55 attribute double? valueMin; |
| 55 attribute double? valueNow; | 56 attribute double? valueNow; |
| 56 attribute DOMString? valueText; | 57 attribute DOMString? valueText; |
| 57 }; | 58 }; |
| OLD | NEW |