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

Side by Side Diff: LayoutTests/fast/canvas/canvas-createImageBitmap-animated-expected.html

Issue 22346004: Ensure that createImageBitmap takes a snapshot of a gifs frame 0 image. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 <canvas id="c"></canvas>
4 <script>
5 var canvas = document.getElementById("c");
6 canvas.setAttribute("width", "200");
7 canvas.setAttribute("height", "200");
8 var ctx = canvas.getContext("2d");
9 ctx.fillStyle = 'rgb(0, 255, 0)';
10 ctx.fillRect(0, 0, 200, 200);
11 </script>
12 <p>A green square should be visible.</p>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698