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

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

Issue 1007503003: Fixed key event context menu and added tests for coordinate cleanups (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed typo in expectation Created 5 years, 8 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
« no previous file with comments | « Source/web/tests/WebViewTest.cpp ('k') | Source/web/tests/data/email-form.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <canvas width="200" height="200"></canvas> 4 <canvas style="position:absolute; top:40px; left:40px" width="200" height="200"> </canvas>
5 <script> 5 <script>
6 var canvas = document.querySelector("canvas"); 6 var canvas = document.querySelector("canvas");
7 var context = canvas.getContext("2d"); 7 var context = canvas.getContext("2d");
8 context.fillStyle = "red"; 8 context.fillStyle = "red";
9 context.fillRect(0, 0, 200, 200); 9 context.fillRect(0, 0, 200, 200);
10 </script> 10 </script>
11 </body> 11 </body>
12 </html> 12 </html>
OLDNEW
« no previous file with comments | « Source/web/tests/WebViewTest.cpp ('k') | Source/web/tests/data/email-form.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698