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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>FAIL</p>
3 <iframe src="data:text/html,FAIL"></iframe>
4 <script type="text/x-isolate" id="s1">
5
6 window.onunload = function() {
7 Window;
8 };
9
10 </script>
11 <script>
12
13 window.onload = function() {
14 if (window.layoutTestController) {
15 layoutTestController.waitUntilDone();
16 layoutTestController.dumpAsText();
17
18 var iframeElement = document.querySelector('iframe');
19 iframeElement.focus();
20 layoutTestController.evaluateScriptInIsolatedWorld(0, document.querySele ctor('#s1').textContent);
21
22 iframeElement.onload = function() {
23 document.body.textContent = 'PASS';
24 layoutTestController.notifyDone();
25 };
26 iframeElement.src = 'data:text/html,PASS';
27 }
28 };
29
30 </script>
31 </body>
32 </html>
OLDNEW
« 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