| Index: chrome/test/data/extensions/api_test/content_settings/clear/test.html
|
| diff --git a/chrome/test/data/extensions/api_test/content_settings/clear/test.html b/chrome/test/data/extensions/api_test/content_settings/clear/test.html
|
| deleted file mode 100644
|
| index 69ffc7bf207009849c8d50729721a7046353df64..0000000000000000000000000000000000000000
|
| --- a/chrome/test/data/extensions/api_test/content_settings/clear/test.html
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -<script>
|
| -// Content settings API test
|
| -// Run with browser_tests --gtest_filter=ExtensionApiTest.ContentSettingsClear
|
| -
|
| -var cs = chrome.experimental.contentSettings;
|
| -chrome.test.runTests([
|
| - function getThirdPartyCookiesAllowed() {
|
| - cs.global.thirdPartyCookiesAllowed.get({}, chrome.test.callbackPass(
|
| - function(allowed) {
|
| - chrome.test.assertEq(
|
| - allowed,
|
| - {
|
| - 'value': false,
|
| - 'levelOfControl': "controllable_by_this_extension"
|
| - },
|
| - "third-party cookies should be blocked");
|
| - }));
|
| - },
|
| - function setThirdPartyCookiesAllowed() {
|
| - cs.global.thirdPartyCookiesAllowed.set(
|
| - {'value': true},
|
| - chrome.test.callbackPass());
|
| - },
|
| - function clearThirdPartyCookiesAllowed() {
|
| - cs.global.thirdPartyCookiesAllowed.clear({}, chrome.test.callbackPass());
|
| - },
|
| - function getThirdPartyCookiesAllowed2() {
|
| - cs.global.thirdPartyCookiesAllowed.get({}, chrome.test.callbackPass(
|
| - function(allowed) {
|
| - chrome.test.assertEq(
|
| - allowed,
|
| - {
|
| - 'value': false,
|
| - 'levelOfControl': "controllable_by_this_extension"
|
| - },
|
| - "third-party cookies should be blocked");
|
| - }));
|
| - }
|
| -]);
|
| -</script>
|
|
|