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

Side by Side Diff: LayoutTests/http/tests/misc/form-target-iframe-location-change.html

Issue 187103002: id of iframe incorrectly sets window name (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add back no-referrer-subframe.html Created 6 years, 9 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
1 <body> 1 <body>
2 Ensure that a form submission to a different frame is not cancelled if the origi n frame navigates immediately thereafter. SUCCESS should appear in both iframes. 2 Ensure that a form submission to a different frame is not cancelled if the origi n frame navigates immediately thereafter. SUCCESS should appear in both iframes.
3 <script> 3 <script>
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 testRunner.dumpChildFramesAsText(); 6 testRunner.dumpChildFramesAsText();
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 } 8 }
9 9
10 var childrenDone = 0; 10 var childrenDone = 0;
11 function childDone() { 11 function childDone() {
12 childrenDone++; 12 childrenDone++;
13 if (childrenDone >= 2 && window.testRunner) 13 if (childrenDone >= 2 && window.testRunner)
14 testRunner.notifyDone(); 14 testRunner.notifyDone();
15 } 15 }
16 </script> 16 </script>
17 <iframe id="formframe" name="formframe"></iframe> 17 <iframe id="formframe" name="formframe"></iframe>
18 <iframe id="navframe" src="resources/submit-in-sibling-frame.html"></iframe> 18 <iframe name="navframe" src="resources/submit-in-sibling-frame.html"></iframe>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698