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 img { | 8 img { |
9 border: 2px solid black; | 9 border: 2px solid black; |
10 margin: 5px 5px 0px 5px; | 10 margin: 5px 5px 0px 5px; |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 image.src = 'resources/ycbcr-progressive-00' + x + '.jpg'; | 40 image.src = 'resources/ycbcr-progressive-00' + x + '.jpg'; |
41 } | 41 } |
42 | 42 |
43 function imageLoaded(x) { | 43 function imageLoaded(x) { |
44 if (x >= totalTestImages && window.testRunner) | 44 if (x >= totalTestImages && window.testRunner) |
45 testRunner.notifyDone(); | 45 testRunner.notifyDone(); |
46 } | 46 } |
47 </script> | 47 </script> |
48 </html> | 48 </html> |
OLD | NEW |