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

Side by Side Diff: LayoutTests/http/tests/multipart/multipart-wait-before-boundary.html

Issue 16848005: Remove support for multipart/x-mixed-replace (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
7 }
8 function childLoaded() {
9 setTimeout("window.frames['iframe'].location = 'resources/multipart- wait-before-boundary.php?done=1'", 0);
10 }
11 function success() {
12 if (window.testRunner) {
13 document.getElementById('status').innerHTML = 'SUCCESS';
14 testRunner.notifyDone();
15 }
16 }
17 </script>
18 </head>
19 <body>
20 <p id="status">RUNNING...</p>
21 <iframe id="iframe" src="resources/multipart-wait-before-boundary.php">
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698