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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/compositing/draws-content/canvas-simple-background-expected.html
diff --git a/LayoutTests/compositing/draws-content/canvas-simple-background-expected.html b/LayoutTests/compositing/draws-content/canvas-simple-background-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..35e774efbb98e10c6504b359beca3db1fa40d64b
--- /dev/null
+++ b/LayoutTests/compositing/draws-content/canvas-simple-background-expected.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style type="text/css">
+ .container {
+ width: 60px;
+ height: 60px;
+ }
+ .background {
+ width: 50px;
+ height: 50px;
+ background-color: green;
+ }
+ .content {
+ width: 25px;
+ height: 25px;
+ background-color: blue;
+ }
+ </style>
+ </head>
+
+ <body>
+ <div class="container">
+ <div class="background">
+ <div class="content"></div>
+ </div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698