Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / overflow-scrolling.html
blob6710006ff5fbe4878749ee8c43aefdd1e164c206
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 body {
6 height: 2000px;
8 #scrollable {
9 margin-top: 50px;
10 margin-left: 50px;
11 width: 200px;
12 height: 200px;
13 overflow: scroll;
15 .content {
16 width: 1000px;
17 height: 1000px;
19 </style>
20 </head>
22 <body>
23 <div id="scrollable">
24 <div class="content"></div>
25 </div>
26 </body>
27 </html>