| Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-clip-rel-child-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-clip-rel-child-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-clip-rel-child-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2299799a653078dc0c7be88446057788aa4dce8a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-clip-rel-child-expected.html
|
| @@ -0,0 +1,51 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +body {
|
| + height: 2000px;
|
| + margin: 0;
|
| +}
|
| +.sticky {
|
| + background: red;
|
| + height: 100px;
|
| + width: 100px;
|
| + overflow: hidden;
|
| + position: relative;
|
| + top: 100px;
|
| +}
|
| +.relative {
|
| + background: green;
|
| + height: 100px;
|
| + width: 100px;
|
| + position: relative;
|
| +}
|
| +#scroller {
|
| + left: 200px;
|
| + top: 100px;
|
| + height: 100px;
|
| + width: 120px;
|
| + overflow: auto;
|
| + position: absolute;
|
| +}
|
| +.spacer {
|
| + height: 1000px;
|
| +}
|
| +</style>
|
| +<script>
|
| +function doTest() {
|
| + window.scrollTo(0, 100);
|
| + document.getElementById('scroller').scrollTop = 100;
|
| +}
|
| +window.addEventListener('load', doTest, false);
|
| +</script>
|
| +<div class="sticky">
|
| + <div class="relative">
|
| + </div>
|
| +</div>
|
| +<div id="scroller">
|
| + <div class="sticky">
|
| + <div class="relative">
|
| + </div>
|
| + </div>
|
| + <div class="spacer"></div>
|
| +</div>
|
| +
|
|
|