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

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

Issue 2762433002: MD Settings: move autofill and manage password toggles to their subpages. (Closed)
Patch Set: use this.i18n instead Created 3 years, 9 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/passwords_and_forms_browsertest.js
diff --git a/chrome/test/data/webui/settings/passwords_and_forms_browsertest.js b/chrome/test/data/webui/settings/passwords_and_forms_browsertest.js
index afc6e0231563a04fe57d054b18b5e60f2a8d4984..9860c91c61d6449a8eb7edb0151c3406909b7902 100644
--- a/chrome/test/data/webui/settings/passwords_and_forms_browsertest.js
+++ b/chrome/test/data/webui/settings/passwords_and_forms_browsertest.js
@@ -252,32 +252,6 @@ TEST_F('PasswordsAndFormsBrowserTest', 'uiTests', function() {
destroyPrefs(prefs);
});
});
-
- test('testAutofillExtensionIndicator', function() {
- return createPrefs(true, true).then(function(prefs) {
- var element = createPasswordsAndFormsElement(prefs);
-
- assertFalse(!!element.$$('#autofillExtensionIndicator'));
- element.set('prefs.autofill.enabled.extensionId', 'test-id');
- Polymer.dom.flush();
-
- assertTrue(!!element.$$('#autofillExtensionIndicator'));
- destroyPrefs(prefs);
- });
- });
-
- test('testPasswordsExtensionIndicator', function() {
- return createPrefs(true, true).then(function(prefs) {
- var element = createPasswordsAndFormsElement(prefs);
-
- assertFalse(!!element.$$('#passwordsExtensionIndicator'));
- element.set('prefs.credentials_enable_service.extensionId', 'test-id');
- Polymer.dom.flush();
-
- assertTrue(!!element.$$('#passwordsExtensionIndicator'));
- destroyPrefs(prefs);
- });
- });
});
mocha.run();

Powered by Google App Engine
This is Rietveld 408576698