OLD | NEW |
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 Loading... |
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 Loading... |
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 ]; |
OLD | NEW |