Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: third_party/WebKit/LayoutTests/images/jpeg-yuv-progressive-canvas.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698