Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / body-overflow-hidden.html
blobe60c54636f74983a6fcc13d53e712c610b24f61d
1 <html>
2 <head>
3 <style type="text/css">
4 body {
5 overflow: hidden;
7 #a {
8 background-color: green;
9 width: 100px;
10 height: 3000px;
12 </style>
13 </head>
14 <body>
15 This page should be nonscrollable because of overflow: hidden on the body.
16 <div id="a"></div>
17 </body>
18 </html>