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

Side by Side Diff: third_party/WebKit/LayoutTests/csspaint/paint2d-image-expected.html

Issue 2868003002: CSSPaint: Move layout tests in csspaint/ to http/tests/csspaint/ (Closed)
Patch Set: rebase Created 3 years, 7 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 <canvas id="canvas" width="300" height="300"></canvas>
3
4 <script>
5 var canvas = document.getElementById("canvas");
6 var ctx = canvas.getContext("2d");
7 var img = new Image;
8 img.src = "resources/html5.png";
9 img.onload = function() {
10 ctx.drawImage(img, 0, 0);
11 };
12 </script>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/csspaint/paint2d-image.html ('k') | third_party/WebKit/LayoutTests/csspaint/paint2d-paths.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698