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

Side by Side Diff: LayoutTests/compositing/draws-content/canvas-simple-background-expected.html

Issue 19543014: Direct composite canvas background if possible. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: resolved layout test failures Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .container {
6 width: 60px;
7 height: 60px;
8 }
9 .background {
10 width: 50px;
11 height: 50px;
12 background-color: green;
13 }
14 .content {
15 width: 25px;
16 height: 25px;
17 background-color: blue;
18 }
19 </style>
20 </head>
21
22 <body>
23 <div class="container">
24 <div class="background">
25 <div class="content"></div>
26 </div>
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698