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

Side by Side Diff: LayoutTests/fast/frames/frame-unload-crash2.html

Issue 11421183: Merge 135303 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1312/
Patch Set: Created 8 years 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/fast/frames/frame-unload-crash2-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <iframe srcdoc=""></iframe> 3 <iframe srcdoc=""></iframe>
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 } 8 }
9 9
10 function finish() { 10 function finish() {
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.notifyDone(); 12 testRunner.notifyDone();
13 } 13 }
14 14
15 frames[0].onunload = function () { 15 frames[0].onunload = function () {
16 document.open(); 16 document.open();
17 document.write("PASS. WebKit didn't crash."); 17 document.write("PASS. WebKit didn't crash.");
18 document.close(); 18 document.close();
19 19
20 setTimeout("finish()", 0); 20 setTimeout("finish()", 0);
21 }; 21 };
22 </script> 22 </script>
23 </html> 23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/frames/frame-unload-crash2-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698