OLD | NEW |
1 <canvas id="canvas" width="64px" height="64px" style="display: none"></canvas> | 1 <!-- The letters in the right image should be blurry compared to the letters in
the left image. --> |
| 2 <canvas></canvas> |
| 3 <img id="result"> |
2 <pre id="log"></pre> | 4 <pre id="log"></pre> |
3 <img id="result"> | 5 |
4 <script> | 6 <script> |
5 if (window.testRunner) { | 7 if (window.testRunner) { |
6 window.testRunner.dumpAsTextWithPixelResults(); | 8 window.testRunner.dumpAsTextWithPixelResults(); |
7 window.testRunner.waitUntilDone(); | 9 window.testRunner.waitUntilDone(); |
8 } | 10 } |
9 | 11 |
10 function webpDataURLTest() | 12 var image = new Image(); |
11 { | 13 image.onload = function() { |
12 var canvas = document.getElementById('canvas'); | 14 var canvas = document.querySelector('canvas'); |
13 var context = canvas.getContext('2d'); | 15 canvas.width = this.width; |
14 context.drawImage(window.image, 0, 0, canvas.width, canvas.height); | 16 canvas.height = this.height; |
| 17 canvas.getContext('2d').drawImage(this, 0, 0); |
15 | 18 |
16 var dataURL = canvas.toDataURL('image/webp', 0.8); | 19 document.body.style.zoom = 1.3; |
| 20 |
| 21 var dataURL = canvas.toDataURL('image/webp', 0.2); |
| 22 |
17 if (!dataURL.match(/^data:image\/webp[;,]/)) | 23 if (!dataURL.match(/^data:image\/webp[;,]/)) |
18 document.getElementById('log').textContent += "FAIL: canvas.toDataURL('i
mage/webp') not supported"; | 24 document.getElementById('log').textContent += "FAIL: the dataURL should
have 'image/webp' type."; |
19 else | 25 else |
20 document.getElementById('result').src = dataURL; | 26 document.getElementById('result').src = dataURL; |
21 | 27 |
22 if (window.testRunner) | 28 if (window.testRunner) |
23 window.testRunner.notifyDone(); | 29 window.testRunner.notifyDone(); |
24 } | 30 }; |
25 | 31 |
26 var image = new Image(); | 32 image.src = "resources/letters.png"; |
27 image.onload = webpDataURLTest; | |
28 image.src = 'resources/html5.png'; | |
29 </script> | 33 </script> |
OLD | NEW |