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

Side by Side Diff: webkit/data/layout_tests/LayoutTests/fast/frames/javascript-url-as-framesrc-crash.html

Issue 165437: Merge WebKit r44541 to the 172 (2.0) branch.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/branches/172/src/
Patch Set: Created 11 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
« no previous file with comments | « no previous file | webkit/data/layout_tests/LayoutTests/fast/frames/javascript-url-as-framesrc-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
(Empty)
1 <head>
2 <script language="JavaScript">
3 // See https://bugs.webkit.org/show_bug.cgi?id=26230
4
5 if (window.layoutTestController) {
6 layoutTestController.dumpAsText();
7 }
8
9 function makeFrameContents() {
10 var doc = theFrame.document;
11 doc.open();
12 doc.write('<img src=no-image-resource-required.png>');
13 doc.close();
14 return "SUCCESS (as long as we didn't crash, claim victory)";
15 }
16 </script>
17 </head>
18
19 <frameset>
20 <frame name="theFrame" src="javascript:parent.makeFrameContents()">
21 </frameset>
OLDNEW
« no previous file with comments | « no previous file | webkit/data/layout_tests/LayoutTests/fast/frames/javascript-url-as-framesrc-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698