| Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-left.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-left.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-left.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..f515c04103fc693a6d5c362b56591c9e54678287
 | 
| --- /dev/null
 | 
| +++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-left.html
 | 
| @@ -0,0 +1,77 @@
 | 
| +<!DOCTYPE html>
 | 
| +<script>
 | 
| +if (window.internals) {
 | 
| +    internals.settings.setCSSStickyPositionEnabled(true);
 | 
| +}           
 | 
| +</script>
 | 
| +
 | 
| +<html>
 | 
| +<head>
 | 
| +<style>
 | 
| +    body {
 | 
| +        margin: 0;
 | 
| +        width: 2000px;
 | 
| +        overflow: hidden; /* hide scrollbars */
 | 
| +    }
 | 
| +    
 | 
| +    .group {
 | 
| +        position: relative;
 | 
| +        width: 500px;
 | 
| +        height: 200px;
 | 
| +    }
 | 
| +    
 | 
| +    .container {
 | 
| +        width: 400px;
 | 
| +        height: 180px;
 | 
| +        outline: 2px solid black;
 | 
| +    }
 | 
| +    
 | 
| +    .box {
 | 
| +        width: 200px;
 | 
| +        height: 180px;
 | 
| +    }
 | 
| +
 | 
| +    .sticky {
 | 
| +        position: sticky;
 | 
| +        left: 100px;
 | 
| +        background-color: green;
 | 
| +    }
 | 
| +    
 | 
| +    .indicator {
 | 
| +        position: absolute;
 | 
| +        top: 0;
 | 
| +        left: 0;
 | 
| +        background-color: red;
 | 
| +    }
 | 
| +</style>
 | 
| +<script>
 | 
| +    function doTest()
 | 
| +    {
 | 
| +        window.scrollTo(100, 0);
 | 
| +    }
 | 
| +    window.addEventListener('load', doTest, false);
 | 
| +</script>
 | 
| +</head>
 | 
| +<body>
 | 
| +    <div class="group">
 | 
| +        <div class="indicator box" style="left: 200px;"></div>
 | 
| +        <div class="container">
 | 
| +            <div class="sticky box"></div>
 | 
| +        </div>
 | 
| +    </div>
 | 
| +
 | 
| +    <div class="group" style="left: 100px">
 | 
| +        <div class="indicator box" style="left: 100px;"></div>
 | 
| +        <div class="container">
 | 
| +            <div class="sticky box"></div>
 | 
| +        </div>
 | 
| +    </div>
 | 
| +
 | 
| +    <div class="group" style="left: 200px">
 | 
| +        <div class="indicator box" style="left: 0;"></div>
 | 
| +        <div class="container">
 | 
| +            <div class="sticky box"></div>
 | 
| +        </div>
 | 
| +    </div>
 | 
| +</body>
 | 
| +</html>
 | 
| 
 |