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

Side by Side Diff: LayoutTests/fast/canvas/webgl/texture-color-profile.html

Issue 9187038: Merge 104732 - [chromium] Color profiles are incorrect for images without premultiplied alpha (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 11 months 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 <html> 2 <html>
3 <head> 3 <head>
4 <title>Texture upload with color profile</title> 4 <title>Texture upload with color profile</title>
5 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/> 5 <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
6 <script src="../../js/resources/js-test-pre.js"></script> 6 <script src="../../js/resources/js-test-pre.js"></script>
7 <script src="resources/webgl-test.js"></script> 7 <script src="resources/webgl-test.js"></script>
8 <script src="resources/webgl-test-utils.js"></script> 8 <script src="resources/webgl-test-utils.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 gl.readPixels(0, 0, width, height, gl.RGBA, gl.UNSIGNED_BYTE, buf); 81 gl.readPixels(0, 0, width, height, gl.RGBA, gl.UNSIGNED_BYTE, buf);
82 // This generous range is still enough to catch the regression. 82 // This generous range is still enough to catch the regression.
83 checkPixelRange(buf, 0, 0, [163, 126, 94, 129], 20); 83 checkPixelRange(buf, 0, 0, [163, 126, 94, 129], 20);
84 84
85 debug(""); 85 debug("");
86 isSuccessfullyParsed(); 86 isSuccessfullyParsed();
87 } 87 }
88 </script> 88 </script>
89 </body> 89 </body>
90 </html> 90 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698