| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body onload="load()"> | 3 <body onload="load()"> |
| 4 <p>Tests decoding and rendering a video element that has a changing reso
lution.</p> | 4 <p>Tests decoding and rendering a video element that has a changing reso
lution.</p> |
| 5 <video width=320></video> | 5 <video width=320></video> |
| 6 <video width=320></video> | 6 <video width=320></video> |
| 7 <script> | 7 <script> |
| 8 if (window.testRunner) { | 8 if (window.testRunner) { |
| 9 testRunner.waitUntilDone(); | 9 testRunner.waitUntilDone(); |
| 10 } | 10 } |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 testRunner.notifyDone(); | 48 testRunner.notifyDone(); |
| 49 } | 49 } |
| 50 }); | 50 }); |
| 51 | 51 |
| 52 video.currentTime = 0.5; | 52 video.currentTime = 0.5; |
| 53 }); | 53 }); |
| 54 } | 54 } |
| 55 </script> | 55 </script> |
| 56 </body> | 56 </body> |
| 57 </html> | 57 </html> |
| OLD | NEW |