mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
19 lines
523 B
PHP
19 lines
523 B
PHP
<?php
|
|
# This test page checks 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>
|