| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 description: "Value from element contents." | 190 description: "Value from element contents." |
| 191 }, | 191 }, |
| 192 "placeholder": { | 192 "placeholder": { |
| 193 name: "From placeholder attribute", | 193 name: "From placeholder attribute", |
| 194 description: "Value from placeholder attribute." | 194 description: "Value from placeholder attribute." |
| 195 }, | 195 }, |
| 196 "relatedElement": { | 196 "relatedElement": { |
| 197 name: "Related element", | 197 name: "Related element", |
| 198 description: "Value from related element." | 198 description: "Value from related element." |
| 199 } | 199 } |
| 200 } | 200 }; |
| 201 | 201 |
| 202 WebInspector.AccessibilityStrings.AXNativeSourceTypes = { | 202 WebInspector.AccessibilityStrings.AXNativeSourceTypes = { |
| 203 "figcaption": { | 203 "figcaption": { |
| 204 name: "From caption", | 204 name: "From caption", |
| 205 description: "Value from figcaption element." | 205 description: "Value from figcaption element." |
| 206 }, | 206 }, |
| 207 "label": { | 207 "label": { |
| 208 name: "From label", | 208 name: "From label", |
| 209 description: "Value from label element." | 209 description: "Value from label element." |
| 210 }, | 210 }, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 222 }, | 222 }, |
| 223 "title": { | 223 "title": { |
| 224 "name": "From title", | 224 "name": "From title", |
| 225 "description": "Value from title attribute." | 225 "description": "Value from title attribute." |
| 226 }, | 226 }, |
| 227 "other": { | 227 "other": { |
| 228 name: "From native HTML", | 228 name: "From native HTML", |
| 229 description: "Value from native HTML (unknown source)." | 229 description: "Value from native HTML (unknown source)." |
| 230 }, | 230 }, |
| 231 | 231 |
| 232 } | 232 }; |
| OLD | NEW |