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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-webp-maximum-quality.html

Issue 1937433002: HTML <canvas>: add WEBP lossless encoding support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing. Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-webp-maximum-quality.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-webp-maximum-quality.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-webp-maximum-quality.html
index faaf8912fd285fbc85c8a9805ec1a4c521b5806a..8a136628a512fa51dfa886f8f09f85b64c580bd2 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-webp-maximum-quality.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-toBlob-webp-maximum-quality.html
@@ -1,29 +1,40 @@
-<canvas id="mycanvas"></canvas>
-<img id="result" onload="testDone()">
-<script type = 'text/javascript'>
+<!-- The letters in the right image should be crisp like the letters in the left image. -->
+<canvas></canvas>
+<img id="result">
+<pre id="error"></pre>
+
+<script>
if (window.testRunner) {
testRunner.dumpAsTextWithPixelResults();
testRunner.waitUntilDone();
}
-function testDone()
-{
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
var image = new Image();
+
image.onload = function() {
- var canvas = document.getElementById("mycanvas");
- canvas.width = image.width;
- canvas.height = image.height;
- var ctx = canvas.getContext('2d');
- ctx.drawImage(image, 0, 0);
+ var canvas = document.querySelector('canvas');
+ canvas.width = this.width;
+ canvas.height = this.height;
+ canvas.getContext('2d').drawImage(this, 0, 0);
+
+ result.onload = function() {
+ if (window.testRunner)
+ window.testRunner.notifyDone();
+ };
+
+ canvas.toBlob(function(blob) {
+ var errorImage = "../../fast/images/resources/rgb-jpeg-red.jpg";
+ if (!(blob instanceof Blob)) {
+ error.textContent += "FAIL: the blob is not valid.";
+ result.src = errorImage;
+ } else if (blob.type != 'image/webp') {
+ error.textContent += "FAIL: the blob should have 'image/webp' type.";
+ result.src = errorImage;
+ } else {
+ result.src = URL.createObjectURL(blob);
+ }
+ }, "image/webp", 1.0); // maximum quality
+};
- canvas.toBlob(function(blob) {
- url = URL.createObjectURL(blob);
- result.src = url;
- }, "image/webp", 1.0);
-}
image.src = "resources/letters.png";
</script>

Powered by Google App Engine
This is Rietveld 408576698