author | Adam Barth |
Wed, 02 May 2012 16:40:41 -0700 | |
branch | testJam |
changeset 30 | c781ed9506ae |
parent 29 | b41a5ac4f1fb (current diff) |
parent 28 | e6b16bbadc90 (diff) |
child 32 | 64c4e567b377 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/csp/submitted/mozilla/csp-inline-script.php Wed May 02 16:40:41 2012 -0700 @@ -0,0 +1,14 @@ +<?php +header("X-WebKit-CSP: script-src 'self'"); +header("X-Content-Seucurity-Policy: script-src 'self'"); +header("Content-Seucurity-Policy: script-src 'self'"); +?> + +<html> +<head> +<title> No line script </title> +</head> + +<body> +<script>alert(foo);</script> +</body>