| Index: third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9800d8401c6ac4801879b6bbd5ed45a771301896
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/scrolling-neg-z-index-descendants-should-cause-repaint-expected.html
|
| @@ -0,0 +1,27 @@
|
| +<!DOCTYPE HTML>
|
| +<style>
|
| +#container {
|
| + width: 100px;
|
| + height: 300px;
|
| + border: 1px black solid;
|
| + overflow: hidden;
|
| +}
|
| +
|
| +.scrolled {
|
| + width: 50px;
|
| + height: 50px;
|
| + margin: 10px;
|
| + position: relative;
|
| + background-color: green;
|
| + top: -100px;
|
| +}
|
| +</style>
|
| +<div id="container">
|
| + <div class="scrolled">1</div>
|
| + <div class="scrolled">2</div>
|
| + <div class="scrolled">3</div>
|
| + <div class="scrolled">4</div>
|
| + <div class="scrolled">5</div>
|
| + <div class="scrolled">6</div>
|
| + <div class="scrolled">7</div>
|
| +</div>
|
|
|