Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / 050.html
blob94c4e12be6047e3271e5d5b5b01a5edd01b3f94c
1 <html>
2 <style>
3 .box {
4 border: 2px solid green;
5 padding: 2px;
8 .container {
9 border: 2px solid blue;
10 height: 100px;
11 width: 100px;
12 position: absolute;
13 padding:10px;
16 .leftright {
17 position:absolute;
18 left:0px;
19 right:0px;
20 top:0px;
21 height:100px;
24 .topbottom {
25 width: 100px;
26 position:absolute;
27 top:0px;
28 bottom:0px;
29 left:0px;
31 </style>
32 <body>
33 <div class="container">
34 <div class="leftright box"></div>
35 <div class="topbottom box"></div>
36 <div style="width:100%; height:100%; background: gray;"></div>
37 </div>
39 </body>