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

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

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 1 month 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** 5 /**
6 * @constructor 6 * @constructor
7 * @extends {WebInspector.AccessibilitySubPane} 7 * @extends {WebInspector.AccessibilitySubPane}
8 */ 8 */
9 WebInspector.ARIAAttributesPane = function() 9 WebInspector.ARIAAttributesPane = function()
10 { 10 {
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 completionsReadyCallback([]); 236 completionsReadyCallback([]);
237 return; 237 return;
238 } 238 }
239 239
240 var results = this._ariaCompletions.filter((value) => value.startsWith(p refix)); 240 var results = this._ariaCompletions.filter((value) => value.startsWith(p refix));
241 241
242 completionsReadyCallback(results, 0); 242 completionsReadyCallback(results, 0);
243 }, 243 },
244 244
245 __proto__: WebInspector.TextPrompt.prototype 245 __proto__: WebInspector.TextPrompt.prototype
246 } 246 };
247 247
248 248
249 WebInspector.ARIAAttributesPane._attributes = [ 249 WebInspector.ARIAAttributesPane._attributes = [
250 "role", 250 "role",
251 "aria-busy", 251 "aria-busy",
252 "aria-checked", 252 "aria-checked",
253 "aria-disabled", 253 "aria-disabled",
254 "aria-expanded", 254 "aria-expanded",
255 "aria-grabbed", 255 "aria-grabbed",
256 "aria-hidden", 256 "aria-hidden",
(...skipping 20 matching lines...) Expand all
277 "aria-readonly", 277 "aria-readonly",
278 "aria-relevant", 278 "aria-relevant",
279 "aria-required", 279 "aria-required",
280 "aria-setsize", 280 "aria-setsize",
281 "aria-sort", 281 "aria-sort",
282 "aria-valuemax", 282 "aria-valuemax",
283 "aria-valuemin", 283 "aria-valuemin",
284 "aria-valuenow", 284 "aria-valuenow",
285 "aria-valuetext", 285 "aria-valuetext",
286 ]; 286 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698