| 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 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 Loading... |
| 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 }; |
| OLD | NEW |