Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8887)

Unified Diff: chrome/test/data/webui/settings/cr_settings_interactive_ui_tests.js

Issue 2941433002: MD Settings: fix auto-focus on sync page. (Closed)
Patch Set: feedback Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/webui/settings/cr_settings_interactive_ui_tests.js
diff --git a/chrome/test/data/webui/settings/cr_settings_interactive_ui_tests.js b/chrome/test/data/webui/settings/cr_settings_interactive_ui_tests.js
index 9f4b7e31d419cca07d0e81eaba275a239f12a112..fac6e14d027508597d9d80918f1fdded59310933 100644
--- a/chrome/test/data/webui/settings/cr_settings_interactive_ui_tests.js
+++ b/chrome/test/data/webui/settings/cr_settings_interactive_ui_tests.js
@@ -66,6 +66,30 @@ TEST_F('CrSettingsFocusRowBehavior', 'FocusTest', function() {
});
+/**
+ * Test fixture for Sync Page.
+ * @constructor
+ * @extends {CrSettingsInteractiveUITest}
+ */
+function CrSettingsSyncPageTest() {}
+
+CrSettingsSyncPageTest.prototype = {
+ __proto__: CrSettingsInteractiveUITest.prototype,
+
+ /** @override */
+ browsePreload: 'chrome://md-settings/people_page/sync_page.html',
+
+ /** @override */
+ extraLibraries: CrSettingsInteractiveUITest.prototype.extraLibraries.concat([
+ 'people_page_sync_page_interactive_test.js',
+ ]),
+};
+
+TEST_F('CrSettingsSyncPageTest', 'All', function() {
+ mocha.run();
+});
+
+
/**
* @constructor
* @extends {CrSettingsInteractiveUITest}

Powered by Google App Engine
This is Rietveld 408576698