OLD | NEW |
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 Loading... |
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> |
OLD | NEW |