Index: LayoutTests/fast/frames/sandboxed-iframe-parsing-space-characters.html |
diff --git a/LayoutTests/fast/frames/sandboxed-iframe-parsing-space-characters.html b/LayoutTests/fast/frames/sandboxed-iframe-parsing-space-characters.html |
index a653934874c16d80cb048ceb647ca95f8586bc9a..3d7311e7f0e2e7365c4c954c619dfc469a8a9b57 100644 |
--- a/LayoutTests/fast/frames/sandboxed-iframe-parsing-space-characters.html |
+++ b/LayoutTests/fast/frames/sandboxed-iframe-parsing-space-characters.html |
@@ -25,7 +25,7 @@ function testCharacter(possibleDelimiter, message) { |
var policy = "allow-scripts" + possibleDelimiter + "allow-forms"; |
var iframe = document.createElement('iframe'); |
iframe.sandbox = policy; |
- iframe.src = "data:text/html,<script>alert('" + message + "');<\/script>"; |
+ iframe.src = "data:text/html,<script>console.log('" + message + "');<\/script>"; |
iframe.onload = next; |
document.body.appendChild(iframe); |
} |