| Index: LayoutTests/compositing/fixed-background-negative-z-index-fixed-expected.html
|
| diff --git a/LayoutTests/compositing/fixed-background-negative-z-index-fixed-expected.html b/LayoutTests/compositing/fixed-background-negative-z-index-fixed-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..305c766e3da5acebe5bc0618c632a8087a765eca
|
| --- /dev/null
|
| +++ b/LayoutTests/compositing/fixed-background-negative-z-index-fixed-expected.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<html>
|
| +<head>
|
| + <style>
|
| + body {
|
| + height: 2000px;
|
| + background-image: url('resources/simple_image.png');
|
| + background-size: 200px 200px;
|
| + background-attachment: fixed;
|
| + overflow: hidden; /* hide scrollbar */
|
| + }
|
| + .fixed {
|
| + position: fixed;
|
| + z-index: -1;
|
| + top: 50px;
|
| + left: 50px;
|
| + width: 200px;
|
| + height: 200px;
|
| + background-color: silver;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body>
|
| +
|
| + <div class="fixed box"></div>
|
| +
|
| +</body>
|
| +</html>
|
|
|