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

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

Issue 138443013: Remove iframe@seamless (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Include remove tests Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <body>
3 <script src="../../../resources/js-test.js"></script>
4 <script>
5 if (window.testRunner)
6 testRunner.waitUntilDone();
7
8 window.addEventListener('message', function(evt) {
9 shouldBeEqualToString("frames[0].document.body.textContent.trim()", "DONE");
10
11 if (window.testRunner)
12 testRunner.notifyDone();
13 }, false);
14 </script>
15 <iframe srcdoc="
16 Waiting...
17 <script>
18 window.onload=function() {
19 frames[0].document.getElementsByTagName('form')[0].submit();
20 }
21 </script>
22 <iframe name=tg seamless
23 srcdoc='<form target=tg method=POST action=resources/done.html>
24 <input type=submit>
25 </from>
26 '></iframe>
27 "></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698