summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/table-rules-attribute-none-with-cell-borders-expected.html
blob: 694ee6d7f70c9bca0a870357c124406b036660cb (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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: Table columns - HTML table 'rules' none attribute with cell borders</title>
        <meta name="assert" content="The first table should have two vertical lines intersecting two horizontal lines.">
        <style type="text/css">
            table
            {
                border-collapse: collapse;
                border-style: solid;
                border-color: black;
            }
            td
            {
                border-width: 3px;
                border-style: solid;
                border-color: black;
                height: 2em;
                width: 2em;
            }
        </style>
    </head>
    <body>
        <table rules="all">
            <tr>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
            </tr>
        </table>
    </body>
</html>