OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // TODO(dbeam): test for loading upacked extensions? | 5 // TODO(dbeam): test for loading upacked extensions? |
6 | 6 |
7 GEN('#include "chrome/browser/ui/webui/extensions/' + | 7 GEN('#include "chrome/browser/ui/webui/extensions/' + |
8 'extension_settings_browsertest.h"'); | 8 'extension_settings_browsertest.h"'); |
9 | 9 |
10 // The id of the extension from |InstallGoodExtension|. | 10 // The id of the extension from |InstallGoodExtension|. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 * @type {string} | 44 * @type {string} |
45 * @const | 45 * @const |
46 */ | 46 */ |
47 browsePreload: 'chrome://extensions-frame/', | 47 browsePreload: 'chrome://extensions-frame/', |
48 | 48 |
49 /** @override */ | 49 /** @override */ |
50 typedefCppFixture: 'ExtensionSettingsUIBrowserTest', | 50 typedefCppFixture: 'ExtensionSettingsUIBrowserTest', |
51 | 51 |
52 /** @override */ | 52 /** @override */ |
53 setUp: function() { | 53 setUp: function() { |
| 54 testing.Test.prototype.setUp.call(this); |
54 testing.Test.disableAnimationsAndTransitions(); | 55 testing.Test.disableAnimationsAndTransitions(); |
| 56 |
| 57 // Enable when failure is resolved. |
| 58 // AX_ARIA_08: http://crbug.com/560903 |
| 59 this.accessibilityAuditConfig.ignoreSelectors( |
| 60 'requiredOwnedAriaRoleMissing', |
| 61 '#kiosk-app-list'); |
55 }, | 62 }, |
56 | 63 |
57 /** | 64 /** |
58 * Holds an array of steps that should happen in order during a test. | 65 * Holds an array of steps that should happen in order during a test. |
59 * The last step should be |testDone|. | 66 * The last step should be |testDone|. |
60 * @protected {Array<!Function>} | 67 * @protected {Array<!Function>} |
61 * */ | 68 * */ |
62 steps: [], | 69 steps: [], |
63 | 70 |
64 /** | 71 /** |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 | 512 |
506 /** @override */ | 513 /** @override */ |
507 browsePreload: ExtensionSettingsWebUITest.prototype.browsePreload + | 514 browsePreload: ExtensionSettingsWebUITest.prototype.browsePreload + |
508 '?options=' + GOOD_EXTENSION_ID, | 515 '?options=' + GOOD_EXTENSION_ID, |
509 }; | 516 }; |
510 | 517 |
511 TEST_F('OptionsDialogExtensionSettingsWebUITest', 'testAccessibility', | 518 TEST_F('OptionsDialogExtensionSettingsWebUITest', 'testAccessibility', |
512 function() { | 519 function() { |
513 this.emptyTestForAccessibility(); | 520 this.emptyTestForAccessibility(); |
514 }); | 521 }); |
OLD | NEW |