Index: LayoutTests/http/tests/security/contentSecurityPolicy/script-src-self-in-sandbox.html |
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-self-in-sandbox.html b/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-self-in-sandbox.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..db8b621ca06e79a9f17a2f3872f4157a2fc2d7e7 |
--- /dev/null |
+++ b/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-self-in-sandbox.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+ <script> |
+ if (window.testRunner) { |
+ testRunner.dumpAsText(); |
+ testRunner.dumpChildFramesAsText(); |
+ } |
+ </script> |
+</head> |
+<body> |
+ <iframe sandbox="allow-scripts" src="http://127.0.0.1:8000/security/contentSecurityPolicy/resources/echo-script-src.pl?should_run=yes&q=http://127.0.0.1:8000/security/contentSecurityPolicy/resources/script.js&csp=script-src%20'self'"></iframe> |
+</body> |
+</html> |
+ |