Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
|
Dan Beam
2014/11/12 23:46:13
/**
* @constructor
* @extends {testing.Test}
*/
| |
| 5 function OptionsBrowsertestBase() {} | |
| 6 | |
| 7 OptionsBrowsertestBase.prototype = { | |
| 8 __proto__: testing.Test.prototype, | |
| 9 | |
| 10 /** @override */ | |
| 11 runAccessibilityChecks: true, | |
| 12 | |
| 13 /** @override */ | |
| 14 accessibilityIssuesAreErrors: true, | |
| 15 | |
| 16 /** @override */ | |
| 17 setUp: function() { | |
| 18 // user-image-stream is a streaming video element used for capturing a | |
| 19 // user image during OOBE. | |
| 20 this.accessibilityAuditConfig.ignoreSelectors('videoWithoutCaptions', | |
| 21 '.user-image-stream'); | |
| 22 }, | |
| 23 }; | |
| OLD | NEW |