| Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-ltr.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-ltr.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-ltr.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..f4b55398905b23080f192442d4f40822b59b6824
 | 
| --- /dev/null
 | 
| +++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-ltr.html
 | 
| @@ -0,0 +1,83 @@
 | 
| +<!DOCTYPE html>
 | 
| +<script>
 | 
| +if (window.internals) {
 | 
| +    internals.settings.setCSSStickyPositionEnabled(true);
 | 
| +}           
 | 
| +</script>
 | 
| +
 | 
| +<html>
 | 
| +<head>
 | 
| +<style>
 | 
| +    #overflow {
 | 
| +        width: 600px;
 | 
| +        height: 450px;
 | 
| +        overflow: hidden; /* Still scrollable with JS */
 | 
| +        border: 1px solid black;
 | 
| +    }
 | 
| +
 | 
| +    .group {
 | 
| +        position: relative;
 | 
| +        width: 500px;
 | 
| +        height: 150px;
 | 
| +    }
 | 
| +
 | 
| +    .container {
 | 
| +        width: 400px;
 | 
| +        height: 130px;
 | 
| +        outline: 2px solid black;
 | 
| +    }
 | 
| +
 | 
| +    .box {
 | 
| +        width: 200px;
 | 
| +        height: 130px;
 | 
| +    }
 | 
| +
 | 
| +    .sticky {
 | 
| +        position: sticky;
 | 
| +        left: 100px;
 | 
| +        right: 200px;
 | 
| +        background-color: green;
 | 
| +    }
 | 
| +
 | 
| +    .indicator {
 | 
| +        position: absolute;
 | 
| +        top: 0;
 | 
| +        left: 0;
 | 
| +        background-color: red;
 | 
| +    }
 | 
| +</style>
 | 
| +<script>
 | 
| +    function doTest()
 | 
| +    {
 | 
| +        document.getElementById('overflow').scrollLeft = 100;
 | 
| +    }
 | 
| +    window.addEventListener('load', doTest, false);
 | 
| +</script>
 | 
| +</head>
 | 
| +<body>
 | 
| +This test checks that right offset is ignored with overconstrained sticky positioning and ltr text direction.
 | 
| +There should be no red.
 | 
| +    <div id="overflow">
 | 
| +        <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>
 | 
| +    </div>
 | 
| +</body>
 | 
| +</html>
 | 
| 
 |