| Index: LayoutTests/fast/workers/resources/scroll-linked-effects.css
|
| diff --git a/LayoutTests/fast/workers/resources/scroll-linked-effects.css b/LayoutTests/fast/workers/resources/scroll-linked-effects.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..569bfcdeeed135766eaf68f28d065f87a8cde2ee
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/workers/resources/scroll-linked-effects.css
|
| @@ -0,0 +1,46 @@
|
| +/*
|
| + * Copyright 2014 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +body {
|
| + margin: 0;
|
| +}
|
| +
|
| +#scroller {
|
| + position: absolute;
|
| + left: 10px;
|
| + top: 10px;
|
| + overflow: scroll;
|
| + width: 300px;
|
| + height: 500px;
|
| + border: 1px solid #ccc;
|
| +}
|
| +
|
| +#scrolled {
|
| + width: 10px;
|
| + height: 10000px;
|
| + background: white;
|
| +}
|
| +
|
| +.card {
|
| + position: absolute;
|
| + left: 500px;
|
| + top: 200px;
|
| + will-change: transform;
|
| + width: 100px;
|
| + height: 100px;
|
| + border-radius: 15px;
|
| +}
|
| +
|
| +#dancer {
|
| + background: #eee;
|
| + z-index: 2;
|
| +}
|
| +
|
| +#shadow {
|
| + background: #aaa;
|
| + -webkit-filter: blur(5px);
|
| + z-index: 1;
|
| +}
|
|
|