Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positive-margin-start-align-center.html
blob423db652eedcde65f5a90e52c50c9a199c01aa21
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6 margin: 0px;
9 .hidTarget
11 height: 100px;
12 width: 100px;
13 position: absolute;
14 left: 200px;
15 background-color: green;
18 .sized
20 width: 200px;
23 .marginLeft
25 width: 100px;
26 height: 100px;
27 margin-left: 200px;
28 background-color: red;
33 position: absolute;
34 top: 300px;
36 </style>
37 </head>
38 <body>
39 <div class="hidTarget"></div>
40 <div align="center" class="sized">
41 <div class="marginLeft"></div>
42 </div>
43 <p>
44 <a href="https://bugs.webkit.org/show_bug.cgi?id=89515">89515</a>: REGRESSION(r113885): Margin not properly applied to elements with align=center<br>
45 There should be a green rectangle above with no red.
46 </p>
47 </body>
48 </html>