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

Side by Side Diff: LayoutTests/fast/files/domurl-script-execution-context-crash.html

Issue 6480008: Merge 77914 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 years, 10 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/fast/files/domurl-script-execution-context-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 <html> 1 <html>
2 <script> 2 <script>
3 function crash() 3 function crash()
4 { 4 {
5 try { 5 try {
6 e.apply(w, ['webkitURL']); 6 e.apply(w, ['webkitURL']);
7 } catch (ex) { } 7 } catch (ex) { }
8 document.body.innerHTML = "PASS: null security context for DOMURL did not cr ash"; 8 document.body.innerHTML = "PASS: null security context for DOMURL did not cr ash";
9 if (window.layoutTestController) 9 if (window.layoutTestController)
10 layoutTestController.notifyDone(); 10 layoutTestController.notifyDone();
(...skipping 10 matching lines...) Expand all
21 layoutTestController.setCanOpenWindows(); 21 layoutTestController.setCanOpenWindows();
22 layoutTestController.setCloseRemainingWindowsWhenComplete(true); 22 layoutTestController.setCloseRemainingWindowsWhenComplete(true);
23 layoutTestController.waitUntilDone(); 23 layoutTestController.waitUntilDone();
24 } 24 }
25 25
26 e = (w = open()).eval; 26 e = (w = open()).eval;
27 </script> 27 </script>
28 <body onload="load()"> 28 <body onload="load()">
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/files/domurl-script-execution-context-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698