Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / rtl-fixed-positioning.html
blob9eac74d70275f8b0c60e4d75d6fea6adc058ba70
1 <!doctype html>
2 <html dir='rtl'>
3 <head>
4 <style>
5 .container {
6 background-color: #0f0;
7 height: 2000px;
8 width: 2000px;
10 .floater {
11 background-color: #f0f;
12 height: 100px;
13 left: 0;
14 position: fixed;
15 top: 0;
16 width: 100px;
18 body {
19 overflow:hidden;
21 </style>
22 </head>
23 <body>
25 <div class="container">
26 <div class="floater" dir="ltr">This box should be fixed to the top-left of the window.
27 </div>
28 </div>
30 <script>
31 window.scrollBy(-100, 100);
32 </script>