| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body onload="load()"> | 3 <body onload="load()"> |
| 4 <p>Test that a video element scales decoded frames to match the initial
size | 4 <p>Test that a video element scales decoded frames to match the initial
size |
| 5 as opposed to changing the size of the element.</p> | 5 as opposed to changing the size of the element.</p> |
| 6 <video width="320"></video> | 6 <video width="320"></video> |
| 7 <video></video> | 7 <video></video> |
| 8 | 8 |
| 9 <script> | 9 <script> |
| 10 if (window.testRunner) { | 10 if (window.testRunner) { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 video.currentTime = 1.0; | 75 video.currentTime = 1.0; |
| 76 video_fixed_size.currentTime = 0.5; | 76 video_fixed_size.currentTime = 0.5; |
| 77 }; | 77 }; |
| 78 video.addEventListener('pause', onpause); | 78 video.addEventListener('pause', onpause); |
| 79 video_fixed_size.addEventListener('pause', onpause); | 79 video_fixed_size.addEventListener('pause', onpause); |
| 80 } | 80 } |
| 81 </script> | 81 </script> |
| 82 </body> | 82 </body> |
| 83 </html> | 83 </html> |
| OLD | NEW |