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

Side by Side Diff: chrome/browser/ui/webui/options/options_browsertest_base.js

Issue 2236213002: Add quick unlock Settings in options page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 4 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 (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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 {testing.Test} 7 * @extends {testing.Test}
8 */ 8 */
9 function OptionsBrowsertestBase() {} 9 function OptionsBrowsertestBase() {}
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 // AX_FOCUS_03: http://crbug.com/560910 64 // AX_FOCUS_03: http://crbug.com/560910
65 this.accessibilityAuditConfig.ignoreSelectors( 65 this.accessibilityAuditConfig.ignoreSelectors(
66 'tabIndexGreaterThanZero', 66 'tabIndexGreaterThanZero',
67 tabIndexGreaterThanZeroSelectors); 67 tabIndexGreaterThanZeroSelectors);
68 68
69 // Enable when audit has improved performance. 69 // Enable when audit has improved performance.
70 // AX_HTML_02: 70 // AX_HTML_02:
71 // https://github.com/GoogleChrome/accessibility-developer-tools/issues/263 71 // https://github.com/GoogleChrome/accessibility-developer-tools/issues/263
72 this.accessibilityAuditConfig.auditRulesToIgnore.push( 72 this.accessibilityAuditConfig.auditRulesToIgnore.push(
73 'duplicateId'); 73 'duplicateId');
74
75 // Enable when failure is resolved.
76 // AX_ARIA_02: http://crbug.com/591547
77 this.accessibilityAuditConfig.ignoreSelectors(
78 'nonExistentAriaRelatedElement', '#input');
79
80 // Enable when failure is resolved.
81 // AX_ARIA_04: http://crbug.com/591550
82 this.accessibilityAuditConfig.ignoreSelectors(
83 'badAriaAttributeValue', '#input');
84
74 }, 85 },
75 }; 86 };
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/browser_options_handler.cc ('k') | chrome/browser/ui/webui/options/options_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698