Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(754)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityStrings.js

Issue 2436703003: DevTools: Flesh out AccessibilityModel and use SDK objects instead of protocol objects (Closed)
Patch Set: revert accessibilityNode.css Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698