Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / block_bound.html
blobb46e5d62b7e6a328fa4c6fd9c95309b494cd81e0
1 <html>
2 <head>
3 <style type="text/css">
4 div.back {
5 position: absolute;
6 left: 0px;
7 top: 0px;
8 width: 200px;
9 height: 200px;
10 background-color: gray;
12 div.front {
13 position: absolute;
14 width: 80px;
15 height: 80px;
16 background-color: lightgray;
17 text-align: center;
19 </style>
20 </head>
21 <body>
22 <div class="back">
23 <div class="front" id="div-left-top" style="left: 10px; top: 10px">
24 left-top
25 </div>
26 <div class="front" id="div-right-top" style="left: 110px; top: 10px">
27 right-top
28 </div>
29 <div class="front" id="div-left-bottom" style="left: 10px; top: 110px">
30 left-bottom
31 </div>
32 <div class="front" id="div-right-bottom" style="left: 110px; top: 110px">
33 right-bottom
34 </div>
35 <div>
36 </body>
37 </html>