summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/height-applies-to-003.xht
blob: 3af89edc6b82b7f7993478f15adf0a669639c263 (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
42
43
44
<!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 applied to elements with 'display' set to 'table-footer-group'</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-height" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property" />
        <meta name="flags" content="may" />
        <meta name="assert" content="The 'height' property applies to elements with 'display' set to 'table-footer-group'." />
        <style type="text/css">
            #test
            {
                display: table-footer-group;
                background: black;
                height: 1in;
            }
            #table
            {
                display: table;
                table-layout: fixed;
                width: 1in;
            }
            #row
            {
                display: table-row;
            }
            #cell
            {
                display: table-cell;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is a box below.</p>
        <!-- If 'height' is supported on 'table-footer-group' then a square will be visible. -->
        <div id="table">
            <div id="test">
                <div id="row">
                    <div id="cell">&nbsp;</div>
                </div>
            </div>
        </div>
    </body>
</html>