| 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 08ea7beae930d5d32f7cb34b8869cf4683a83fbd..cc38f864a678ca4d0874ed447617aee15182c16e 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -854,6 +854,35 @@ TEST_F('CrSettingsCategorySettingExceptionsTest', 'All', function() {
|
| * @constructor
|
| * @extends {CrSettingsBrowserTest}
|
| */
|
| +function CrSettingsAllSitesTest() {}
|
| +
|
| +CrSettingsAllSitesTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload: 'chrome://md-settings/privacy_page/privacy_page.html',
|
| +
|
| + /** @override */
|
| + commandLineSwitches: [{
|
| + switchName: 'enable-site-settings',
|
| + }],
|
| +
|
| + /** @override */
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'test_browser_proxy.js',
|
| + 'test_site_settings_prefs_browser_proxy.js',
|
| + 'all_sites_tests.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsAllSitesTest', 'All', function() {
|
| + mocha.run();
|
| +});
|
| +
|
| +/**
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| function CrSettingsSiteDetailsTest() {}
|
|
|
| CrSettingsSiteDetailsTest.prototype = {
|
|
|