| Index: LayoutTests/compositing/backgrounds/fixed-backgrounds-expected.html
|
| diff --git a/LayoutTests/compositing/backgrounds/fixed-backgrounds-expected.html b/LayoutTests/compositing/backgrounds/fixed-backgrounds-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3eac9c4911f1120a367b2594ad3a19c12b51b11d
|
| --- /dev/null
|
| +++ b/LayoutTests/compositing/backgrounds/fixed-backgrounds-expected.html
|
| @@ -0,0 +1,31 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + body {
|
| + height: 2000px;
|
| + width: 2000px;
|
| + overflow: hidden;
|
| + }
|
| +
|
| + .box {
|
| + height: 300px;
|
| + width: 300px;
|
| + margin: 20px;
|
| + margin-left: 10px;
|
| + background-image: url('../resources/alpha-blocks.png');
|
| + background-size: 500px 300px;
|
| + background-repeat: no-repeat;
|
| + background-attachment: fixed;
|
| + box-shadow: 10px 10px 0px gray; /* inflates composited bounds */
|
| + border: 4px solid gray;
|
| + float: left;
|
| + }
|
| +</style>
|
| +<script>
|
| + function doTest()
|
| + {
|
| + window.scrollTo(35, 45);
|
| + }
|
| + window.addEventListener('load', doTest, false);
|
| +</script>
|
| +<div class="box"></div>
|
| +<div class="box"></div>
|
|
|