Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-rules-attribute-none-with-frame-expected.html
blob54696c3f4e5980cb8bf8966019870ab5d7c0e753
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: Table columns - HTML table 'rules' attribute on columns</title>
5 <meta name="assert" content="The first two tables are empty boxes.">
6 <meta name="assert" content="The second table should have just two horizontal lines - one for the top edge of the table, one for the bottom edge.">
7 <meta name="assert" content="The third table should have just two vertical lines - one for the left edge of the table, one for the right edge.">
8 <style type="text/css">
9 table
11 border-collapse: collapse;
13 .tableborder
15 border-style: solid;
16 border-width: 1px;
18 .tablenone
20 border-style: none;
22 .tablevertical
24 border-style: none solid;
25 border-width: 1px;
27 .tablehorizontal
29 border-style: solid none;
30 border-width: 1px;
34 height: 20px;
35 width: 20px;
37 </style>
38 </head>
39 <body>
40 <table class="tableborder">
41 <tr>
42 <td></td>
43 <td></td>
44 </tr>
45 <tr>
46 <td></td>
47 <td></td>
48 </tr>
49 <tr>
50 <td></td>
51 <td></td>
52 </tr>
53 </table>
54 <br>
55 <table class="tableborder">
56 <tr>
57 <td></td>
58 <td></td>
59 </tr>
60 <tr>
61 <td></td>
62 <td></td>
63 </tr>
64 <tr>
65 <td></td>
66 <td></td>
67 </tr>
68 </table>
69 <br>
70 <table class="tablehorizontal">
71 <tr>
72 <td></td>
73 <td></td>
74 </tr>
75 <tr>
76 <td></td>
77 <td></td>
78 </tr>
79 <tr>
80 <td></td>
81 <td></td>
82 </tr>
83 </table>
84 <br>
85 <table class="tablevertical">
86 <tr>
87 <td></td>
88 <td></td>
89 </tr>
90 <tr>
91 <td></td>
92 <td></td>
93 </tr>
94 <tr>
95 <td></td>
96 <td></td>
97 </tr>
98 </body>
99 </html>