mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
9e3d0f3109
Close gh-1413
19 lines
524 B
PHP
19 lines
524 B
PHP
<?php
|
|
# This test page checkes CSP only for browsers with "Content-Security-Policy" header support
|
|
# i.e. no old WebKit or old Firefox
|
|
header("Content-Security-Policy: default-src 'self'; report-uri csp-log.php");
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>CSP Test Page</title>
|
|
<script src="../../jquery.js"></script>
|
|
<script src="csp.js"></script>
|
|
<script src="getComputedSupport.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>CSP Test Page</p>
|
|
</body>
|
|
</html>
|