Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Unified Diff: LayoutTests/http/tests/security/isolatedWorld/context-destroy.html

Issue 10386064: Revert 114320 - [V8] Don't delete the per context data until the V8IsolatedContext is deleted (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/security/isolatedWorld/context-destroy-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/http/tests/security/isolatedWorld/context-destroy-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698