| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.testRunner) | 4 if (window.testRunner) |
| 5 testRunner.waitUntilDone(); | 5 testRunner.waitUntilDone(); |
| 6 | 6 |
| 7 function loadedFirstPart() | 7 function loadedFirstPart() |
| 8 { | 8 { |
| 9 if (window.testRunner) | 9 if (window.testRunner) |
| 10 setTimeout("testRunner.notifyDone()", 200); | 10 testRunner.notifyDone(); |
| 11 } | 11 } |
| 12 </script> | 12 </script> |
| 13 </head> | 13 </head> |
| 14 <body> | 14 <body> |
| 15 <p> | 15 <p> |
| 16 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13759">http:
//bugs.webkit.org/show_bug.cgi?id=13759</a> | 16 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13759">http:
//bugs.webkit.org/show_bug.cgi?id=13759</a> |
| 17 REGRESSION (r20182-r20184): Incorrect rendering of multipart images</i>. | 17 REGRESSION (r20182-r20184): Incorrect rendering of multipart images</i>. |
| 18 </p> | 18 </p> |
| 19 <p> | 19 <p> |
| 20 There should be a bright green square below. | 20 There should be a bright green square below. |
| 21 </p> | 21 </p> |
| 22 <img width="100" height="100" src="resources/multipart.php?interval=0&img1=2
x2-green.png&img2=abe.png" onload="loadedFirstPart()"> | 22 <img width="100" height="100" src="resources/multipart.php?interval=1&img1=2
x2-green.png&img2=abe.png" onload="loadedFirstPart()"> |
| 23 </body> | 23 </body> |
| 24 </html> | 24 </html> |
| OLD | NEW |