OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <html> |
| 4 <head> |
| 5 <style> |
| 6 #overflow { |
| 7 width: 600px; |
| 8 height: 450px; |
| 9 overflow: hidden; /* Still scrollable with JS */ |
| 10 border: 1px solid black; |
| 11 } |
| 12 |
| 13 .group { |
| 14 position: relative; |
| 15 width: 500px; |
| 16 height: 150px; |
| 17 } |
| 18 |
| 19 .container { |
| 20 width: 400px; |
| 21 height: 130px; |
| 22 outline: 2px solid black; |
| 23 direction: rtl; |
| 24 } |
| 25 |
| 26 .box { |
| 27 width: 200px; |
| 28 height: 130px; |
| 29 } |
| 30 |
| 31 .sticky { |
| 32 position: absolute; |
| 33 background-color: green; |
| 34 } |
| 35 |
| 36 .indicator { |
| 37 position: absolute; |
| 38 top: 0; |
| 39 left: 0; |
| 40 background-color: red; |
| 41 } |
| 42 </style> |
| 43 <script> |
| 44 function doTest() |
| 45 { |
| 46 document.getElementById('overflow').scrollLeft = 100; |
| 47 } |
| 48 window.addEventListener('load', doTest, false); |
| 49 </script> |
| 50 </head> |
| 51 <body> |
| 52 This test checks that left offset is ignored with overconstrained sticky positio
ning and rtl text direction. |
| 53 There should be no red. |
| 54 <div id="overflow"> |
| 55 <div class="group" style="left: 400px"> |
| 56 <div class="indicator box" style="left: 0;"></div> |
| 57 <div class="container"> |
| 58 <div class="sticky box" style="left: 0"></div> |
| 59 </div> |
| 60 </div> |
| 61 |
| 62 <div class="group" style="left: 300px"> |
| 63 <div class="indicator box" style="left: 100px;"></div> |
| 64 <div class="container"> |
| 65 <div class="sticky box" style="left: 100px"></div> |
| 66 </div> |
| 67 </div> |
| 68 |
| 69 <div class="group" style="left: 200px"> |
| 70 <div class="indicator box" style="left: 200px;"></div> |
| 71 <div class="container"> |
| 72 <div class="sticky box" style="left: 200px"></div> |
| 73 </div> |
| 74 </div> |
| 75 </div> |
| 76 </body> |
| 77 </html> |
OLD | NEW |