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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 description: "Value from label element with for= attribute." | 213 description: "Value from label element with for= attribute." |
214 }, | 214 }, |
215 "labelwrapped": { | 215 "labelwrapped": { |
216 name: "From label (wrapped)", | 216 name: "From label (wrapped)", |
217 description: "Value from label element wrapped." | 217 description: "Value from label element wrapped." |
218 }, | 218 }, |
219 "tablecaption": { | 219 "tablecaption": { |
220 name: "From caption", | 220 name: "From caption", |
221 description: "Value from table caption." | 221 description: "Value from table caption." |
222 }, | 222 }, |
| 223 "title": { |
| 224 "name": "From title", |
| 225 "description": "Value from title attribute." |
| 226 }, |
223 "other": { | 227 "other": { |
224 name: "From native HTML", | 228 name: "From native HTML", |
225 description: "Value from native HTML (unknown source)." | 229 description: "Value from native HTML (unknown source)." |
226 }, | 230 }, |
227 | 231 |
228 } | 232 } |
OLD | NEW |