Chromium Code Reviews| Index: LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl-expected.html |
| diff --git a/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl-expected.html b/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..89bd77ec60044457bf554b6018b82c63eb4e62ef |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl-expected.html |
| @@ -0,0 +1,77 @@ |
| +<!DOCTYPE html> |
| + |
| +<html> |
| +<head> |
| +<style> |
| + #overflow { |
| + width: 600px; |
| + height: 600px; |
| + overflow: hidden; /* Still scrollable with JS */ |
| + border: 1px solid black; |
| + } |
| + |
| + .group { |
| + position: relative; |
| + width: 500px; |
| + height: 200px; |
| + } |
| + |
| + .container { |
| + width: 400px; |
| + height: 180px; |
| + outline: 2px solid black; |
| + direction: rtl; |
| + } |
| + |
| + .box { |
| + width: 200px; |
| + height: 180px; |
| + } |
| + |
| + .sticky { |
| + position: absolute; |
| + 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 left offset is ignored with overconstrained sticky positioning and rtl text direction. |
| +There should be no red. |
| + <div id="overflow"> |
|
Julien - ping for review
2014/05/22 15:49:02
This overflows the viewport (set to 800x600 in DRT
ostap
2014/05/22 23:13:11
Done.
|
| + <div class="group" style="left: 400px"> |
| + <div class="indicator box" style="left: 0;"></div> |
| + <div class="container"> |
| + <div class="sticky box" style="left: 0"></div> |
| + </div> |
| + </div> |
| + |
| + <div class="group" style="left: 300px"> |
| + <div class="indicator box" style="left: 100px;"></div> |
| + <div class="container"> |
| + <div class="sticky box" style="left: 100px"></div> |
| + </div> |
| + </div> |
| + |
| + <div class="group" style="left: 200px"> |
| + <div class="indicator box" style="left: 200px;"></div> |
| + <div class="container"> |
| + <div class="sticky box" style="left: 200px"></div> |
| + </div> |
| + </div> |
| + </div> |
| +</body> |
| +</html> |