Index: chrome/test/data/extensions/manifest_tests/background_allow_no_js_access.json |
diff --git a/chrome/test/data/extensions/manifest_tests/background_allow_no_js_access.json b/chrome/test/data/extensions/manifest_tests/background_allow_no_js_access.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..340b09034555df54e8feda7b239ed69d6a728048 |
--- /dev/null |
+++ b/chrome/test/data/extensions/manifest_tests/background_allow_no_js_access.json |
@@ -0,0 +1,19 @@ |
+{ |
+ "name": "test", |
+ "version": "1", |
+ "app": { |
+ "urls": [ |
+ "https://www.google.com/mail/" |
+ ], |
+ "launch": { |
+ "web_url": "https://www.google.com/mail/" |
+ } |
+ }, |
+ "permissions": [ |
+ "background" |
+ ], |
+ "background": { |
+ "page": "https://www.google.com/mail/foo.html", |
+ "allow_js_access": false |
+ } |
+} |