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

Unified Diff: chrome/test/data/extensions/api_test/sandboxed_pages_csp/manifest.json

Issue 2563843002: Restrict app sandbox's CSP to disallow loading web content in them. (Closed)
Patch Set: sync @tott Created 3 years, 12 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/sandboxed_pages_csp/manifest.json
diff --git a/chrome/test/data/extensions/api_test/sandboxed_pages_csp/manifest.json b/chrome/test/data/extensions/api_test/sandboxed_pages_csp/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..78fc61006cf4318ddef9961f05261396b6b1e9be
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/sandboxed_pages_csp/manifest.json
@@ -0,0 +1,9 @@
+{
+ "name": "Tests that loading web content fails inside sandboxed pages",
+ "manifest_version": 2,
+ "version": "0.1",
+ "sandbox": {
+ "pages": ["sandboxed.html"],
+ "content_security_policy": "sandbox allow-scripts; child-src *;"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698