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

Side by Side Diff: LayoutTests/fast/canvas/drawImage.html

Issue 187393007: Convert some pixel tests in fast/canvas into ref tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 If this renders correctly you should see one big friendly green square. 1 <p>If this renders correctly you should see one big friendly green square.</p>
2 <canvas id="canvas" width="200" height="200" ></canvas> 2 <canvas id="canvas" width="200" height="200" ></canvas>
3 <canvas id="canvas2" width="200" height="200" style="display:none" ></canvas> 3 <canvas id="canvas2" width="200" height="200" style="display:none" ></canvas>
4 <script> 4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsTextWithPixelResults();
7
8 var canvas = document.getElementById("canvas"); 5 var canvas = document.getElementById("canvas");
9 var canvas2 = document.getElementById("canvas2"); 6 var canvas2 = document.getElementById("canvas2");
10 var context = canvas.getContext("2d"); 7 var context = canvas.getContext("2d");
11 var context2 = canvas2.getContext("2d"); 8 var context2 = canvas2.getContext("2d");
12 context2.fillStyle = 'red'; 9 context2.fillStyle = 'red';
13 context2.fillRect(0,0,200,200); 10 context2.fillRect(0,0,200,200);
14 context2.fillStyle = 'green'; 11 context2.fillStyle = 'green';
15 context2.fillRect(50,50,100,100); 12 context2.fillRect(50,50,100,100);
13 context.imageSmoothingEnabled = false;
16 context.drawImage(canvas2, 50, 50, 100, 100, 0, 0, 200, 200); 14 context.drawImage(canvas2, 50, 50, 100, 100, 0, 0, 200, 200);
17 </script> 15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698