Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / position-relative.html
blobf5fd161504d5f9f1de7950f07383ed591c06c77d
1 <html>
2 <head>
3 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=10692</title>
4 </head>
5 <body>
6 <div style="position: relative; left: -100px;">
7 <div id="target" style="position: relative; left: 100px; width: 100px; overflow: auto; background-color: red;">
8 <div style="width: 100px; height: 100px; background-color: green;"></div>
9 </div>
10 </div>
11 <script>
12 document.getElementById("target").scrollLeft = "100";
13 </script>
14 </body>
15 </html>