| Index: chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| diff --git a/chrome/test/data/webui/settings/cr_settings_browsertest.js b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| index 763a5fc320e0763db3365ac952cef6debcb475d1..dae34ef71b5929fd356bb1c837792cc040b43033 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -64,6 +64,25 @@ TEST_F('CrSettingsCheckboxTest', 'All', function() {
|
| mocha.run();
|
| });
|
|
|
| +function CrSettingsToggleButtonTest() {}
|
| +
|
| +CrSettingsToggleButtonTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload: 'chrome://md-settings/controls/settings_toggle_button.html',
|
| +
|
| + /** @override */
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'settings_toggle_button_tests.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsToggleButtonTest', 'All', function() {
|
| + settings_toggle_button.registerTests();
|
| + mocha.run();
|
| +});
|
| +
|
| function CrSettingsDropdownMenuTest() {}
|
|
|
| CrSettingsDropdownMenuTest.prototype = {
|
|
|