| Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-lr.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-lr.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-lr.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..552d63b1618f4e90b8b39633d20d2e92199f4122
 | 
| --- /dev/null
 | 
| +++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-lr.html
 | 
| @@ -0,0 +1,73 @@
 | 
| +<!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: 160px;
 | 
| +    }
 | 
| +    
 | 
| +    .container {
 | 
| +        -webkit-writing-mode: vertical-lr;
 | 
| +        width: 300px;
 | 
| +        height: 160px;
 | 
| +        border: 2px solid black;
 | 
| +        margin: 10px;
 | 
| +    }
 | 
| +    
 | 
| +    .box {
 | 
| +        width: 200px;
 | 
| +        height: 180px;
 | 
| +    }
 | 
| +
 | 
| +    .sticky {
 | 
| +        position: sticky;
 | 
| +        background-color: green;
 | 
| +        width: 100px;
 | 
| +        height: 100px;
 | 
| +        left: 20px;
 | 
| +        right: 20px;
 | 
| +        margin: 5px;
 | 
| +    }
 | 
| +</style>
 | 
| +<script>
 | 
| +    function doTest()
 | 
| +    {
 | 
| +        window.scrollTo(100, 0);
 | 
| +    }
 | 
| +    window.addEventListener('load', doTest, false);
 | 
| +</script>
 | 
| +</head>
 | 
| +<body>
 | 
| +    <div class="group" style="left: -100px">
 | 
| +        <div class="container">Before
 | 
| +            <div class="sticky box"></div>After
 | 
| +        </div>
 | 
| +    </div>
 | 
| +
 | 
| +    <div class="group" style="left: 400px">
 | 
| +        <div class="container">Before
 | 
| +            <div class="sticky box"></div>After
 | 
| +        </div>
 | 
| +    </div>
 | 
| +
 | 
| +    <div class="group" style="left: 800px">
 | 
| +        <div class="container">Before
 | 
| +            <div class="sticky box"></div>After
 | 
| +        </div>
 | 
| +    </div>
 | 
| +</body>
 | 
| +</html>
 | 
| 
 |