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

Side by Side Diff: Source/web/tests/data/canvas-copy-image.html

Issue 270613004: Implement "Copy image" for canvas (blink side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: nits Created 6 years, 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <canvas width="200" height="200"></canvas>
5 <script>
6 var canvas = document.querySelector("canvas");
tkent 2014/06/30 22:59:46 Please do not indent the whole content of <script>
zino 2014/07/01 10:12:11 Done.
7 var context = canvas.getContext("2d");
8 context.fillStyle = "red";
9 context.fillRect(0, 0, 200, 200);
10 </script>
11 </body>
12 </html>
OLDNEW
« Source/web/ContextMenuClientImpl.cpp ('K') | « Source/web/tests/WebViewTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698