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

Side by Side Diff: LayoutTests/http/tests/misc/resources/slow-frame-with-image.php

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <? 1 <?
2 header("Content-Type: text/html; charset=utf-8"); 2 header("Content-Type: text/html; charset=utf-8");
3 ?> 3 ?>
4 <!-- If the scheduler has been disabled as it should, the image will load immedi ately rather than waiting for this frame to finish. --> 4 <!-- If the scheduler has been disabled as it should, the image will load immedi ately rather than waiting for this frame to finish. -->
5 <html> 5 <html>
6 <head> 6 <head>
7 <script src="/resources/js-test-pre.js"></script> 7 <script src="/resources/js-test-pre.js"></script>
8 <script> 8 <script>
9 window.jsTestIsAsync = true; 9 window.jsTestIsAsync = true;
10 if (self.testRunner) 10 if (self.testRunner)
(...skipping 26 matching lines...) Expand all
37 </script> 37 </script>
38 </head> 38 </head>
39 <body> 39 <body>
40 <div id="console"></div> 40 <div id="console"></div>
41 <img src="compass.jpg" onload="imageDone()"> 41 <img src="compass.jpg" onload="imageDone()">
42 <?php 42 <?php
43 ob_flush(); 43 ob_flush();
44 flush(); 44 flush();
45 sleep(2); 45 sleep(2);
46 ?> 46 ?>
47 <script src="/resources/js-test-post.js"></script>
48 </body> 47 </body>
49 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698