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

Side by Side Diff: LayoutTests/fast/frames/seamless/seamless-form-get.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <body> 2 <body>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 7
8 window.addEventListener('message', function(evt) { 8 window.addEventListener('message', function(evt) {
9 shouldBeEqualToString("frames[0].document.body.textContent", "DONE\n"); 9 shouldBeEqualToString("frames[0].document.body.textContent", "DONE\n");
10 10
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.notifyDone(); 12 testRunner.notifyDone();
13 }, false); 13 }, false);
14 </script> 14 </script>
15 <iframe srcdoc=" 15 <iframe srcdoc="
16 Waiting... 16 Waiting...
17 <script> 17 <script>
18 window.onload=function() { 18 window.onload=function() {
19 frames[0].document.getElementsByTagName('form')[0].submit(); 19 frames[0].document.getElementsByTagName('form')[0].submit();
20 } 20 }
21 </script> 21 </script>
22 <iframe seamless srcdoc='<form method=GET action=resources/done.html> 22 <iframe seamless srcdoc='<form method=GET action=resources/done.html>
23 <input type=submit> 23 <input type=submit>
24 </from> 24 </from>
25 '></iframe> 25 '></iframe>
26 "></iframe> 26 "></iframe>
OLDNEW
« no previous file with comments | « LayoutTests/fast/frames/seamless/seamless-float.html ('k') | LayoutTests/fast/frames/seamless/seamless-form-get-override.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698