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

Side by Side Diff: LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-unload-sync.html

Issue 196523007: Revert of id of iframe incorrectly sets window name (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 <html> 1 <html>
2 <body> 2 <body>
3 <p>Test behavior of sync XHR during unload</p> 3 <p>Test behavior of sync XHR during unload</p>
4 <script> 4 <script>
5 var consoleMessages = document.createElement("ul"); 5 var consoleMessages = document.createElement("ul");
6 document.body.appendChild(consoleMessages); 6 document.body.appendChild(consoleMessages);
7 7
8 if (window.testRunner) { 8 if (window.testRunner) {
9 testRunner.waitUntilDone(); 9 testRunner.waitUntilDone();
10 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 24
25 function log(message) 25 function log(message)
26 { 26 {
27 var item = document.createElement("li"); 27 var item = document.createElement("li");
28 item.appendChild(document.createTextNode(message)); 28 item.appendChild(document.createTextNode(message));
29 consoleMessages.appendChild(item); 29 consoleMessages.appendChild(item);
30 } 30 }
31 </script> 31 </script>
32 <div id="framediv"> 32 <div id="framediv">
33 <iframe id="ifr" name="ifr" src="resources/xmlhttprequest-in-unload-sync.html">< /iframe> 33 <iframe id="ifr" src="resources/xmlhttprequest-in-unload-sync.html"></iframe>
34 </div> 34 </div>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698