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

Side by Side Diff: LayoutTests/java/inline-applet-crash.html

Issue 10412038: Merge 117304 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
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/java/inline-applet-crash-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 Test passes if it does not crash. 3 Test passes if it does not crash.
4 <applet code=doesnotexist.class></applet> 4 <applet code=doesnotexist.class></applet>
5 <script> 5 <script>
6 if (window.layoutTestController) { 6 if (window.layoutTestController) {
7 layoutTestController.overridePreference("WebKitJavaEnabled", "1"); 7 layoutTestController.overridePreference("WebKitJavaEnabled", "1");
8 layoutTestController.dumpAsText(); 8 layoutTestController.dumpAsText();
9 layoutTestController.waitUntilDone(); 9 layoutTestController.waitUntilDone();
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 function crash() { 21 function crash() {
22 var temp = new Array(); 22 var temp = new Array();
23 walk(temp, "", 0, document.documentElement); 23 walk(temp, "", 0, document.documentElement);
24 if (window.layoutTestController) 24 if (window.layoutTestController)
25 layoutTestController.notifyDone(); 25 layoutTestController.notifyDone();
26 } 26 }
27 27
28 setTimeout("crash();", 0); 28 setTimeout("crash();", 0);
29 </script> 29 </script>
30 </html> 30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/java/inline-applet-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698