Index: LayoutTests/http/tests/security/contentSecurityPolicy/resources/sandboxed-eval.php |
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/resources/sandboxed-eval.php b/LayoutTests/http/tests/security/contentSecurityPolicy/resources/sandboxed-eval.php |
index f379700342384c7adf5830edb7f515eb508f9f4b..917b505f8350a1af5b5d7562beae9701f0750b9b 100644 |
--- a/LayoutTests/http/tests/security/contentSecurityPolicy/resources/sandboxed-eval.php |
+++ b/LayoutTests/http/tests/security/contentSecurityPolicy/resources/sandboxed-eval.php |
@@ -2,9 +2,9 @@ |
header("Content-Security-Policy: sandbox allow-scripts"); |
?> |
<script> |
-alert('PASS (1/2): Script can execute'); |
+console.log('PASS (1/2): Script can execute'); |
</script> |
<script> |
-eval("alert('PASS (2/2): Eval works')"); |
+eval("console.log('PASS (2/2): Eval works')"); |
</script> |
Done. |