Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / scroll-into-view.html
blobf3aeaf463c451d88f7ffd116320b37c42452cfd7
1 <!DOCTYPE html>
2 <html>
4 <head>
5 <style>
6 body {
7 margin: 0px;
9 #content {
10 width: 1000px;
11 height: 2000px;
12 background: silver;
13 margin: 0px;
15 ::-webkit-scrollbar {
16 width: 0px;
17 height: 0px;
19 #box {
20 position: absolute;
21 left: 450px;
22 top: 1200px;
23 width: 100px;
24 height: 20px;
26 </style>
27 </head>
29 <body>
30 <div id="content">
31 This page is 1000x2000 pixels.
32 <input type="text" id="box">
33 </div>
34 </body>
36 </html>