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