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

Side by Side Diff: LayoutTests/plugins/access-after-page-destroyed.html

Issue 3046050: Merge 64293 - 2010-07-28 Justin Schuh <jschuh@chromium.org>... (Closed) Base URL: svn://chrome-svn/chrome/branches/WebKit/472/
Patch Set: Created 10 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/plugins/access-after-page-destroyed-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 <html>
2 <head>
3 <script>
4 if (window.layoutTestController) {
5 layoutTestController.setCanOpenWindows();
6 layoutTestController.dumpAsText();
7 layoutTestController.waitUntilDone();
8 }
9
10 var w = open();
11 var p = w.navigator.mimeTypes.item(0);
12 w.close();
13 w = null;
14
15 setTimeout(function(){
16 p.enabledPlugin;
17 if (window.layoutTestController)
18 layoutTestController.notifyDone();
19 }, 50); // Pause is necessary for the page to get freed
20
21 </script>
22 </head>
23 <body>
24 If the page does not trigger a crash the test passed.
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/plugins/access-after-page-destroyed-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698