Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / tests / data / canvas-copy-image.html
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <canvas width="200" height="200"></canvas>
5 <script>
6 var canvas = document.querySelector("canvas");
7 var context = canvas.getContext("2d");
8 context.fillStyle = "red";
9 context.fillRect(0, 0, 200, 200);
10 </script>
11 </body>
12 </html>