Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / fixed-position-in-fixed-viewport.html
blobaf5f8fde878fd612405fbd39b13b4df319c18552
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name="viewport" content="width=400,height=400">
5 <style>
6 body, html {
7 margin: 0px;
10 div {
11 position: fixed;
12 background-color: blue;
14 </style>
15 </head>
17 <body style="width: 500px; height: 500px">
18 <div id="bottom-fixed" style="left: 0px; bottom: 0px; width: 20px; height: 20px"></div>
19 <div id="top-bottom-fixed" style="left: 0px; top: 0px; bottom: 0px; width: 20px"></div>
20 <div id="right-fixed" style="top: 0px; right: 0px; width: 20px; height: 20px"></div>
21 <div id="left-right-fixed" style="top: 0px; left: 0px; right: 0px; height: 20px"></div>
22 </body>
23 </html>