Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / basic / 006.html
blob9cc413819bde0e4c69b723e492511a4cea018450
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
2 <html lang="en">
3 <head>
4 <title>CSS Block Box Model: overconstrained horizontal box model and minimum widths</title>
5 <style type="text/css">
6 .container { width: 3em; }
7 .test { margin-left: 2em; border-left: none; padding-left: 0; width: auto; padding-right: 0; border-right: none; margin-right: 2em; }
8 .control { padding-left: 2em; }
9 div { font-size: xx-large; }
10 </style>
11 </head>
12 <body>
13 <p>The following two vertical bars should be at the same horizontal position.</p>
14 <div class="container">
15 <div class="test"><span>|</span></div>
16 </div>
17 <div class="control"><span>|</span></div>
18 </body>
19 </html>