| Index: chrome/test/data/extensions/api_test/cross_origin_xhr/content_script/manifest.json
|
| diff --git a/chrome/test/data/extensions/api_test/cross_origin_xhr/manifest.json b/chrome/test/data/extensions/api_test/cross_origin_xhr/content_script/manifest.json
|
| similarity index 55%
|
| rename from chrome/test/data/extensions/api_test/cross_origin_xhr/manifest.json
|
| rename to chrome/test/data/extensions/api_test/cross_origin_xhr/content_script/manifest.json
|
| index 7da00ed7801304dc56c7291ab8ad79c8ebc91352..2a088cc48f4b2d83fee79c8d98c5b04944b36a12 100644
|
| --- a/chrome/test/data/extensions/api_test/cross_origin_xhr/manifest.json
|
| +++ b/chrome/test/data/extensions/api_test/cross_origin_xhr/content_script/manifest.json
|
| @@ -1,7 +1,11 @@
|
| {
|
| "name": "cross origin xhr tests",
|
| "version": "0.1",
|
| - "description": "Sanity check that cross-origin XHR works for extensions. The majority of this is implemented (and tested) in WebKit, but we have a sanity test here just to make sure the integration with Chromium keeps working.",
|
| + "description": "Sanity check that cross-origin XHR works for extension content scripts.",
|
| "background_page": "test.html",
|
| + "content_scripts": [ {
|
| + "js": [ "content_script.js" ],
|
| + "matches": [ "<all_urls>" ]
|
| + } ],
|
| "permissions": ["http://a.com/", "http://*.b.com/"]
|
| }
|
|
|