| 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>
|
|
|