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

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

Issue 2220403002: MD Settings Desktop: Change 'Reset to ask' label to 'Remove'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Polish Created 4 years, 4 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
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/settings/site_list_tests.js
diff --git a/chrome/test/data/webui/settings/site_list_tests.js b/chrome/test/data/webui/settings/site_list_tests.js
index 8e48d95f14934c86802513753ca3cc8ef1a1beac..ccc48576a954d60e004289d47847b46e7f3de2bf 100644
--- a/chrome/test/data/webui/settings/site_list_tests.js
+++ b/chrome/test/data/webui/settings/site_list_tests.js
@@ -355,7 +355,7 @@ cr.define('site_list', function() {
assertEquals(
settings.PermissionValues.ALLOW, testElement.categorySubtype);
Polymer.dom.flush(); // Populates action menu.
- assertMenu(['Block', 'Reset to ask'], testElement);
+ assertMenu(['Block', 'Remove'], testElement);
assertEquals('Allow - 2', testElement.$.header.innerText.trim());
// Site list should show, no matter what category default is set
@@ -386,7 +386,7 @@ cr.define('site_list', function() {
assertEquals(
settings.PermissionValues.BLOCK, testElement.categorySubtype);
Polymer.dom.flush(); // Populates action menu.
- assertMenu(['Allow', 'Reset to ask'], testElement);
+ assertMenu(['Allow', 'Remove'], testElement);
assertEquals('Block - 2', testElement.$.header.innerText.trim());
// Site list should only show when category default is enabled.
@@ -414,7 +414,7 @@ cr.define('site_list', function() {
assertEquals(settings.PermissionValues.SESSION_ONLY,
testElement.categorySubtype);
Polymer.dom.flush(); // Populates action menu.
- assertMenu(['Allow', 'Block', 'Reset to ask'], testElement);
+ assertMenu(['Allow', 'Block', 'Remove'], testElement);
assertEquals('Clear on exit - 1',
testElement.$.header.innerText.trim());
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698