OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <script src="../../../resources/js-test.js"></script> | |
3 <script> | |
4 if (window.testRunner) | |
5 testRunner.waitUntilDone(); | |
6 | |
7 window.addEventListener('message', function(evt) { | |
8 shouldBeEqualToString("frames[0].document.body.textContent.trim()", "DONE"); | |
9 | |
10 if (window.testRunner) | |
11 testRunner.notifyDone(); | |
12 }, false); | |
13 </script> | |
14 <iframe srcdoc=" | |
15 Waiting... | |
16 <script> | |
17 window.onload=function() { | |
18 frames[0].document.getElementsByTagName('form')[0].submit(); | |
19 } | |
20 </script> | |
21 <iframe name=tg seamless | |
22 srcdoc='<form target=tg method=GET action=resources/done.html> | |
23 <input type=submit> | |
24 </from> | |
25 '></iframe> | |
26 "></iframe> | |
OLD | NEW |