root/LayoutTests/http/tests/security/contentSecurityPolicy/resources/sandboxed-eval.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
header("Content-Security-Policy: sandbox allow-scripts");
?>
<script>
alert('PASS (1/2): Script can execute');
</script>
<script>
eval("alert('PASS (2/2): Eval works')");
</script>
Done.

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