Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-rules-attribute-groups-with-frame.html
blobf38f520fdfd6f3d121ef135d79360ad15f76aebc
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: 'groups' in the 'rules' attribute</title>
5 <meta name="assert" content="The first table is a box with 2 horizontal lines.">
6 <meta name="assert" content="The second table is a box with 2 vertical lines.">
7 <meta name="assert" content="The third table has 2 vertical lines and 2 horizontal lines - like a tic-tac toe board.">
8 <style type="text/css">
9 td
11 height: 20px;
12 width: 20px;
14 </style>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsTextWithPixelResults();
18 </script>
19 </head>
20 <body>
21 <table rules="groups" frame="box">
22 <theader>
23 <td></td>
24 <td></td>
25 <td></td>
26 </theader>
27 <tbody>
28 <td></td>
29 <td></td>
30 <td></td>
31 </tbody>
32 <tbody>
33 <td></td>
34 <td></td>
35 <td></td>
36 </tbody>
37 </table>
38 <br>
39 <table rules="groups" frame="border">
40 <colgroup></colgroup>
41 <colgroup></colgroup>
42 <colgroup></colgroup>
43 <tr>
44 <td></td>
45 <td></td>
46 <td></td>
47 </tr>
48 <tr>
49 <td></td>
50 <td></td>
51 <td></td>
52 </tr>
53 <tr>
54 <td></td>
55 <td></td>
56 <td></td>
57 </tr>
58 </table>
60 </body>
61 <br>
62 <table rules="groups" frame="void">
63 <colgroup></colgroup>
64 <colgroup></colgroup>
65 <colgroup></colgroup>
66 <theader>
67 <td></td>
68 <td></td>
69 <td></td>
70 </theader>
71 <tbody>
72 <td></td>
73 <td></td>
74 <td></td>
75 </tbody>
76 <tbody>
77 <td></td>
78 <td></td>
79 <td></td>
80 </tbody>
81 </table>
83 </body>
84 </html>