| Index: LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-rl.html
|
| diff --git a/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-rl.html b/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-rl.html
|
| deleted file mode 100644
|
| index 52b516f566c0e061d4b3af66f0f7d8660b4a344e..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/css/sticky/sticky-writing-mode-vertical-rl.html
|
| +++ /dev/null
|
| @@ -1,68 +0,0 @@
|
| -<!DOCTYPE html>
|
| -
|
| -<html>
|
| -<head>
|
| -<style>
|
| - body {
|
| - margin: 0;
|
| - width: 2000px;
|
| - overflow: hidden; /* hide scrollbars */
|
| - }
|
| -
|
| - .group {
|
| - position: relative;
|
| - width: 500px;
|
| - height: 160px;
|
| - }
|
| -
|
| - .container {
|
| - -webkit-writing-mode: vertical-rl;
|
| - 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>
|
|
|