Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / canvas-copy-image.html
blob875ea4d813eb578dc71c5706028dc31ea92e8e14
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <canvas style="position:absolute; top:40px; left:40px" 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>