summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css2.1/20110323/absolute-non-replaced-width-010.htm
blob: b9666a0f42c14e636d875108e7f7d5c6a7b8d00a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: Solved for 'left' when absolutely positioned non-replaced elements has 'left' and 'width' as 'auto'</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
        <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-width">
        <meta name="flags" content="ahem">
        <meta name="assert" content="When 'left' and 'width' are 'auto' and 'right' is not 'auto', then the width is shrink-to-fit and then solve for 'left'.">
        <style type="text/css">
            #div1
            {
                border: solid black;
                height: 2in;
                position: relative;
                width: 2in;
            }
            div div
            {
                background: red;
                color: blue;
                font: 1in/1em Ahem;
                left: auto;
                margin-left: auto;
                margin-right: auto;
                position: absolute;
                right: 1in;
                width: auto;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the blue box is in the upper-left corner of the black box and there is no red visible on the page.</p>
        <div id="div1">
            <div>X</div>
        </div>
    </body>
</html>