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

Unified Diff: LayoutTests/fast/canvas/canvas-toBlob-jpeg-maximum-quality.html

Issue 1257253004: [HTMLCanvasElement.toBlob] Default callback version without scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: A small change from thread safe bind to common bind based on Kinuko's review Created 5 years, 4 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: LayoutTests/fast/canvas/canvas-toBlob-jpeg-maximum-quality.html
diff --git a/LayoutTests/fast/canvas/canvas-toBlob-jpeg-maximum-quality.html b/LayoutTests/fast/canvas/canvas-toBlob-jpeg-maximum-quality.html
new file mode 100644
index 0000000000000000000000000000000000000000..594e2db62ac229af493b789427e06e5da9d1dcba
--- /dev/null
+++ b/LayoutTests/fast/canvas/canvas-toBlob-jpeg-maximum-quality.html
@@ -0,0 +1,29 @@
+<canvas id="mycanvas"></canvas>
+<img id="result" onload="testDone()">
+<script type = 'text/javascript'>
+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);
+
+ canvas.toBlob(function(blob) {
+ url = URL.createObjectURL(blob);
+ result.src = url;
+ }, "image/jpeg", 1.0);
+}
+image.src = "resources/letters.png";
+</script>

Powered by Google App Engine
This is Rietveld 408576698