root/LayoutTests/http/tests/security/contentSecurityPolicy/xsl-unaffected-by-style-src-1.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
header("Content-Type: application/xhtml+xml");
header("Content-Security-Policy: style-src *; script-src 'unsafe-inline'");

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<?xml-stylesheet type="text/xsl" href="resources/style.xsl"?>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
//<![CDATA[
if (window.testRunner)
    testRunner.dumpAsText();
//]]>
</script>
</head>
<body>
This test should render as a blank page because the style sheet will fail to load!
<div />
</body>
</html>

/* [<][>][^][v][top][bottom][index][help] */