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

Unified Diff: chrome/test/data/extensions/api_test/content_settings/incognito/test.html

Issue 7067040: Enable incognito_session_only preferences (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 9 years, 7 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/extensions/api_test/content_settings/incognito/test.html
diff --git a/chrome/test/data/extensions/api_test/content_settings/incognito/test.html b/chrome/test/data/extensions/api_test/content_settings/incognito/test.html
deleted file mode 100644
index b16f8c0907e2a7833269b2ff1cf95307e364a3e6..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/content_settings/incognito/test.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<script>
-// Content settings API test
-// Run with browser_tests --gtest_filter=ExtensionApiTest.IncognitoContentSettings
-
-var cs = chrome.experimental.contentSettings;
-function expect(expected, message) {
- return chrome.test.callbackPass(function(value) {
- chrome.test.assertNoLastError();
- chrome.test.assertEq(expected, value, message);
- });
-}
-chrome.test.runTests([
- function getRegular() {
- cs.misc.blockThirdPartyCookies.get(
- {},
- expect({ 'value': false,
- 'levelOfControl': "ControllableByThisExtension" },
- "third-party cookies should not be blocked"));
- },
- function getIncognito() {
- cs.misc.blockThirdPartyCookies.get(
- { 'incognito': true },
- expect({ 'value': false,
- 'incognitoSpecific': false,
- 'levelOfControl': "ControllableByThisExtension" },
- "third-party cookies should not be blocked in incognito mode"));
- },
- function set() {
- cs.misc.blockThirdPartyCookies.set(
- { 'scope': 'incognito_persistent', 'value': true },
- chrome.test.callbackPass());
- },
- function getRegular2() {
- cs.misc.blockThirdPartyCookies.get(
- {},
- expect({ 'value': false,
- 'levelOfControl': "ControllableByThisExtension" },
- "third-party cookies should not be blocked"));
- },
- function getIncognito2() {
- cs.misc.blockThirdPartyCookies.get(
- { 'incognito': true },
- expect({ 'value': true,
- 'incognitoSpecific': true,
- 'levelOfControl': "ControlledByThisExtension" },
- "third-party cookies should be blocked in incognito mode"));
- },
-]);
-</script>

Powered by Google App Engine
This is Rietveld 408576698