| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 WebInspector.AccessibilityStrings = {}; | 5 WebInspector.AccessibilityStrings = {}; |
| 6 | 6 |
| 7 WebInspector.AccessibilityStrings.AXAttributes = { | 7 WebInspector.AccessibilityStrings.AXAttributes = { |
| 8 "disabled" : { | 8 "disabled" : { |
| 9 name : "Disabled", | 9 name : "Disabled", |
| 10 description : "If true, this element currently cannot be interacted with
.", | 10 description : "If true, this element currently cannot be interacted with
.", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 }, | 152 }, |
| 153 "role": { | 153 "role": { |
| 154 name: "Role", | 154 name: "Role", |
| 155 description: "Indicates the purpose of this element, such as a user inte
rface idiom for a widget, or structural role within a document.", | 155 description: "Indicates the purpose of this element, such as a user inte
rface idiom for a widget, or structural role within a document.", |
| 156 group: "Default" | 156 group: "Default" |
| 157 }, | 157 }, |
| 158 "value": { | 158 "value": { |
| 159 name: "Value", | 159 name: "Value", |
| 160 description: "The value of this element; this may be user-provided or de
veloper-provided, depending on the element.", | 160 description: "The value of this element; this may be user-provided or de
veloper-provided, depending on the element.", |
| 161 group: "Default" | 161 group: "Default" |
| 162 }, |
| 163 "help": { |
| 164 name: "Help", |
| 165 descrption: "The computed help text for this element.", |
| 166 group: "Default" |
| 162 } | 167 } |
| 163 }; | 168 }; |
| OLD | NEW |