summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/linebox/line-box-height-001.xht
blob: de7483edb759beb674619979276d402ee1fcd0d3 (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
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>CSS Test: Height for inline elements when 'line-height' is smaller than 'height'</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" />
        <meta name="flags" content="ahem" />
        <meta name="assert" content="The 'line-height' property sets the initial height but that height is increased if the content height is larger." />
        <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
        <style type="text/css">
            #div1
            {
                color: blue;
                font: 100px/1 Ahem;
                position: relative;
            }
            span
            {
                line-height: 0;
            }
            #div2
            {
                background: orange;
                height: 200px;
                left: 100px;
                position: absolute;
                top: 0;
                width: 100px;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the blue and orange rectangle have the same height.</p>
        <div id="div1">
            <div>X</div>
            <span>X</span>
            <div id="div2"></div>
        </div>
    </body>
</html>