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

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

Issue 2580653003: [MD settings] remove selectedSite property (Closed)
Patch Set: Created 4 years 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/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 ce558628eeea74969e518ddebdaab9d18d67f3b7..69794344f937ce77e4c77d5d51c101f25dfbbec6 100644
--- a/chrome/test/data/webui/settings/site_list_tests.js
+++ b/chrome/test/data/webui/settings/site_list_tests.js
@@ -625,7 +625,7 @@ cr.define('site_list', function() {
assertNotEquals(undefined, clickable);
MockInteractions.tap(clickable);
assertEquals(prefs.exceptions.geolocation[0].origin,
- testElement.selectedSite.origin);
+ testElement.selectedSiteForUnitTest.origin);
});
});
@@ -748,7 +748,7 @@ cr.define('site_list', function() {
assertNotEquals(undefined, clickable);
MockInteractions.tap(clickable);
assertEquals(prefsVarious.exceptions.geolocation[0].origin,
- testElement.selectedSite.origin);
+ testElement.selectedSiteForUnitTest.origin);
});
});
});
@@ -800,7 +800,7 @@ cr.define('site_list', function() {
prefsMixedOriginAndPattern.exceptions.
geolocation[0].
origin,
- testElement.selectedSite.displayName);
+ testElement.selectedSiteForUnitTest.displayName);
}
});
});

Powered by Google App Engine
This is Rietveld 408576698