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