Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-rules-attribute-with-frame1.html
blob7fa68a88199911db880de21d0e3f39b00f3a0a9b
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: The 'rules' attribute and the 'frame' attribute</title>
5 <meta name="assert" content="The first table has four vertical lines capped and bottomed by two horizontal lines.">
6 <meta name="assert" content="The second table has 2 vertical lines.">
7 <meta name="assert" content="The third table has 2 vertical lines capped by a horizontal line.">
8 <meta name="assert" content="The fourth table has 2 vertical lines bottomed by a horizontal line.">
9 <meta name="assert" content="The fifth table has 3 vertical lines.">
10 <meta name="assert" content="The sixth table has 3 vertical lines.">
11 <style type="text/css">
14 height: 20px;
15 width: 20px;
17 </style>
18 <script>
19 if (window.testRunner)
20 testRunner.dumpAsTextWithPixelResults();
21 </script>
22 </head>
23 <body>
24 <table rules="cols" frame="box">
25 <tr>
26 <td></td>
27 <td></td>
28 <td></td>
29 </tr>
30 <tr>
31 <td></td>
32 <td></td>
33 <td></td>
34 </tr>
35 </table>
36 <br>
37 <table rules="cols" frame="void">
38 <tr>
39 <td></td>
40 <td></td>
41 <td></td>
42 </tr>
43 <tr>
44 <td></td>
45 <td></td>
46 <td></td>
47 </tr>
48 </table>
49 <br>
50 <table rules="cols" frame="above">
51 <tr>
52 <td></td>
53 <td></td>
54 <td></td>
55 </tr>
56 <tr>
57 <td></td>
58 <td></td>
59 <td></td>
60 </tr>
61 </table>
62 <br>
63 <table rules="cols" frame="below">
64 <tr>
65 <td></td>
66 <td></td>
67 <td></td>
68 </tr>
69 <tr>
70 <td></td>
71 <td></td>
72 <td></td>
73 </tr>
74 </table>
75 <br>
76 <table rules="cols" frame="lhs">
77 <tr>
78 <td></td>
79 <td></td>
80 <td></td>
81 </tr>
82 <tr>
83 <td></td>
84 <td></td>
85 <td></td>
86 </tr>
87 </table>
88 <br>
89 <table rules="cols" frame="rhs">
90 <tr>
91 <td></td>
92 <td></td>
93 <td></td>
94 </tr>
95 <tr>
96 <td></td>
97 <td></td>
98 <td></td>
99 </tr>
100 </table>
101 </body>
102 </html>