| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| </style> |
| </head> |
| <body> |
| This test makes sure that positioned elements do not intersect with RTL scrollbars. The test passes if you see the word "Test" below (and its not clipped at all). |
| <div style="position: relative; overflow: hidden; width: 85px; height: 85px;"> |
| <div style="position: absolute; bottom: 0px; left: 0px; font-family: Ahem">Test</div> |
| </div> |
| <script> |
| var scrollme = document.getElementById("scrollme"); |
| scrollme.scrollTop = 400; |
| scrollme.scrollLeft = -400; |
| </script> |
| </body> |
| </html> |