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

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

Issue 1212443002: Updated styles based on user testing and UX feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698