Index: LayoutTests/http/tests/security/isolatedWorld/context-destroy.html |
=================================================================== |
--- LayoutTests/http/tests/security/isolatedWorld/context-destroy.html (revision 116575) |
+++ LayoutTests/http/tests/security/isolatedWorld/context-destroy.html (working copy) |
@@ -1,32 +0,0 @@ |
-<!DOCTYPE html> |
-<p>FAIL</p> |
-<iframe src="data:text/html,FAIL"></iframe> |
-<script type="text/x-isolate" id="s1"> |
- |
-window.onunload = function() { |
- Window; |
-}; |
- |
-</script> |
-<script> |
- |
-window.onload = function() { |
- if (window.layoutTestController) { |
- layoutTestController.waitUntilDone(); |
- layoutTestController.dumpAsText(); |
- |
- var iframeElement = document.querySelector('iframe'); |
- iframeElement.focus(); |
- layoutTestController.evaluateScriptInIsolatedWorld(0, document.querySelector('#s1').textContent); |
- |
- iframeElement.onload = function() { |
- document.body.textContent = 'PASS'; |
- layoutTestController.notifyDone(); |
- }; |
- iframeElement.src = 'data:text/html,PASS'; |
- } |
-}; |
- |
-</script> |
-</body> |
-</html> |