Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / absolute-with-html-border-strict.html
blob52f3ef4aba938e52396ab9aaad28e7c03ae96fe1
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 html {
6 border: 100px solid black;
8 #test {
9 position: absolute;
10 bottom: 0;
11 right: 0;
12 height: 200px;
13 width: 200px;
14 background: green;
16 </style>
17 </head>
18 <body>
19 <div id="test">This should be in the bottom right-hand corner of the viewport even when resizing.</div>
20 </body>
21 </html>