Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / inline-replaced-width-001.htm
bloba78e4489e397950bdaaefaaac3787487f1c69fa5
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Inline replaced elements and 'auto' specified for 'margin-left', 'margin-right' and intrinsic width</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced-width">
7 <meta name="flags" content="image">
8 <meta name="assert" content="Computed value of 'auto' for 'margin-left' or margin-right' on inline replaced elements becomes a used value of '0'. The intrinsic width is also used if 'height' and 'width' are 'auto'.">
9 <style type="text/css">
10 #div1
12 border: solid black;
13 height: 3in;
14 width: 2in;
16 img
18 margin-left: auto;
19 margin-right: auto;
21 div div
23 background: orange;
24 height: 96px;
25 width: 96px;
27 </style>
28 </head>
29 <body>
30 <p>Test passes if the blue and orange boxes below are the same width, and the blue box is in the upper-left corner of the black box.</p>
31 <div id="div1">
32 <img alt="blue 96x96" src="resources/blue96x96.png">
33 <div></div>
34 </div>
35 </body>
36 </html>