| Index: LayoutTests/http/tests/security/isolatedWorld/resources/iframe.html
|
| diff --git a/LayoutTests/http/tests/security/isolatedWorld/resources/iframe.html b/LayoutTests/http/tests/security/isolatedWorld/resources/iframe.html
|
| index 017891267f7c466c410aebb19b0abc417ef4b2b8..542db4d2cd6c800ff698179af1dbbd4679772c59 100644
|
| --- a/LayoutTests/http/tests/security/isolatedWorld/resources/iframe.html
|
| +++ b/LayoutTests/http/tests/security/isolatedWorld/resources/iframe.html
|
| @@ -1,19 +1,19 @@
|
| <!DOCTYPE html>
|
| -<html>
|
| -<body>
|
| -<div id="output"></div>
|
| -<script>
|
| -window.focus();
|
| -
|
| +<html>
|
| +<body>
|
| +<div id="output"></div>
|
| +<script>
|
| +window.focus();
|
| +
|
| // This should not pick up the 'bar' defined in the isolated world from the parent
|
| // document, or the 'hotdog' defined in previous runs of this frame.
|
| testRunner.evaluateScriptInIsolatedWorld(1,
|
| "document.getElementById('output').appendChild(document.createTextNode(window.bar + ',' + window.hotdog));");
|
| -
|
| +
|
| // Next time we run, we also shouldn't see this 'hotdog'.
|
| testRunner.evaluateScriptInIsolatedWorld(1, "var hotdog = 'hotdog';");
|
| -
|
| -parent.iframeComplete(document.getElementById("output").textContent);
|
| -</script>
|
| -</body>
|
| -</html>
|
| +
|
| +parent.iframeComplete(document.getElementById("output").textContent);
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|