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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/csspaint/paint2d-composite-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 canvas { display: inline-block; } 5 canvas { display: inline-block; }
6 </style> 6 </style>
7 </head> 7 </head>
8 <body> 8 <body>
9 <canvas id="source-over" width="80" height="80"></canvas> 9 <canvas id="source-over" width="80" height="80"></canvas>
10 <canvas id="source-in" width="80" height="80"></canvas> 10 <canvas id="source-in" width="80" height="80"></canvas>
(...skipping 30 matching lines...) Expand all
41 ctx.globalCompositeOperation = op; 41 ctx.globalCompositeOperation = op;
42 42
43 ctx.fillStyle = 'deepskyblue'; 43 ctx.fillStyle = 'deepskyblue';
44 ctx.beginPath(); 44 ctx.beginPath();
45 ctx.arc(45,45,20,0,Math.PI*2,true); 45 ctx.arc(45,45,20,0,Math.PI*2,true);
46 ctx.fill(); 46 ctx.fill();
47 } 47 }
48 </script> 48 </script>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698