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

Side by Side 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, 3 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
(Empty)
1 <canvas id="mycanvas"></canvas>
2 <img id="result" onload="testDone()">
3 <script type = 'text/javascript'>
4 if (window.testRunner) {
5 testRunner.dumpAsTextWithPixelResults();
6 testRunner.waitUntilDone();
7 }
8
9 function testDone()
10 {
11 if (window.testRunner)
12 testRunner.notifyDone();
13 }
14
15 var image = new Image();
16 image.onload = function() {
17 var canvas = document.getElementById("mycanvas");
18 canvas.width = image.width;
19 canvas.height = image.height;
20 var ctx = canvas.getContext('2d');
21 ctx.drawImage(image, 0, 0);
22
23 canvas.toBlob(function(blob) {
24 url = URL.createObjectURL(blob);
25 result.src = url;
26 }, "image/jpeg", 1.0);
27 }
28 image.src = "resources/letters.png";
29 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698