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

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

Issue 2754873003: MD Settings: always let users get to autofill/passwords page (Closed)
Patch Set: 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 5d434a9a096293870a1b98c69aea7406d3d69914..afc6e0231563a04fe57d054b18b5e60f2a8d4984 100644
--- a/chrome/test/data/webui/settings/passwords_and_forms_browsertest.js
+++ b/chrome/test/data/webui/settings/passwords_and_forms_browsertest.js
@@ -253,29 +253,6 @@ TEST_F('PasswordsAndFormsBrowserTest', 'uiTests', function() {
});
});
- test('testActionabilityNope', function() {
- return createPrefs(false, false).then(function(prefs) {
-
- var element = createPasswordsAndFormsElement(prefs);
-
- assertFalse(element.$.autofillManagerButton.hasAttribute('actionable'));
- assertFalse(element.$.passwordManagerButton.hasAttribute('actionable'));
-
- destroyPrefs(prefs);
- });
- });
-
- test('testActionabilityYes', function() {
- return createPrefs(true, true).then(function(prefs) {
- var element = createPasswordsAndFormsElement(prefs);
-
- assertTrue(element.$.autofillManagerButton.hasAttribute('actionable'));
- assertTrue(element.$.passwordManagerButton.hasAttribute('actionable'));
-
- destroyPrefs(prefs);
- });
- });
-
test('testAutofillExtensionIndicator', function() {
return createPrefs(true, true).then(function(prefs) {
var element = createPasswordsAndFormsElement(prefs);

Powered by Google App Engine
This is Rietveld 408576698