summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/border-spacing-inherited-001.xht
blob: 34aeb1bb4c371ebc20833edfed1fd14b5283b799 (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
45
46
47
48
49
50
51
52
<!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: Border-spacing is inherited by default</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#propdef-border-spacing" />
        <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#separated-borders" />
        <meta name="flags" content="ahem" />
        <meta name="assert" content="Border-spacing is inherited by default." />
        <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
        <style type="text/css">
            #div1
            {
                background: black;
                height: 1em;
                left: 2in;
                position: relative;
                top: 1in;
                width: 1in;
            }
            #div2
            {
                border-spacing: 1in;
            }
            #table
            {
                display: table;
            }
            #row
            {
                display: table-row;
            }
            .cell
            {
                display: table-cell;
                font-family: Ahem;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the middle box is as wide as the space between the first and last boxes.</p>
        <div id="div1"></div>
        <div id="div2">
            <div id="table">
                <div id="row">
                    <div class="cell">XXXXXX</div>
                    <div class="cell">XXXXXX</div>
                </div>
            </div>
        </div>
    </body>
</html>