| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- test case for crbug.com/597127 --> | 2 <!-- test case for crbug.com/597127 --> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <!-- Use a <meta> viewport, see http://crbug.com/598949 --> | 5 <!-- Use a <meta> viewport, see http://crbug.com/598949 --> |
| 6 <meta name="viewport" content="width=device-width, minimum-scale=1.0"> | 6 <meta name="viewport" content="width=device-width, minimum-scale=1.0"> |
| 7 <style> | 7 <style> |
| 8 canvas { | 8 canvas { |
| 9 border: 2px solid black; | 9 border: 2px solid black; |
| 10 margin: 5px 5px 0px 5px; | 10 margin: 5px 5px 0px 5px; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 image.src = 'resources/ycbcr-progressive-00' + x + '.jpg'; | 44 image.src = 'resources/ycbcr-progressive-00' + x + '.jpg'; |
| 45 } | 45 } |
| 46 | 46 |
| 47 function canvasLoaded(x) { | 47 function canvasLoaded(x) { |
| 48 if (x >= totalTestImages && window.testRunner) | 48 if (x >= totalTestImages && window.testRunner) |
| 49 testRunner.notifyDone(); | 49 testRunner.notifyDone(); |
| 50 } | 50 } |
| 51 </script> | 51 </script> |
| 52 </html> | 52 </html> |
| OLD | NEW |