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> |