Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug7121-1.html
blobe262b56aa930aad05c8afbf545c5fa51cfc9d4c3
1 <HTML>
2 <BODY>
4 <p>In this table (modeled after mozilla.org template) the cells in
5 column two are requesting colspans of (2,3,2,6) respectively. Notice
6 that they all want to span more than one column (which means, in the case of
7 this table, all rows are requesting to span more columns than the
8 number of 'real' <code>&lt;TD&gt;</code> in any single rows [i.e., all rows in the top
9 table want to
10 span 9 cells, but the maximum number of <code>&lt;TD&gt;</code> in any row is
11 8].</p><p>This condition leads to the 'white gap' (in builds of 5.0 for jun04 and before).</p>
13 <TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0 WIDTH="100%">
15 <!-- 8 'real', 9 'requested' -->
16 <TR>
17 <TD BGCOLOR="#999999">1</TD>
18 <TD BGCOLOR="#DDDDDD" COLSPAN=2>2</TD>
19 <TD BGCOLOR="#DDDDDD">4</TD>
20 <TD BGCOLOR="#999999">5</TD>
21 <TD >6</TD>
22 <TD >7</TD>
23 <TD >8</TD>
24 <TD BGCOLOR="#999999">9</TD>
25 </TR>
27 <!-- 7 'real', 9 'requested' -->
28 <TR>
29 <TD BGCOLOR="#999999">1</TD>
30 <TD BGCOLOR="#DDDDDD" COLSPAN=3>2</TD>
31 <TD BGCOLOR="#999999">5</TD>
32 <TD >6</TD>
33 <TD >7</TD>
34 <TD >8</TD>
35 <TD BGCOLOR="#999999">9</TD>
36 </TR>
38 <!-- 7 'real', 9 'requested' -->
39 <TR>
40 <TD BGCOLOR="#999999">1</TD>
41 <TD BGCOLOR="#DDDDDD" COLSPAN=2>2</TD>
42 <TD BGCOLOR="#DDDDDD">4</TD>
43 <TD BGCOLOR="#999999">5</TD>
44 <TD COLSPAN=2>6</TD>
45 <TD >8</TD>
46 <TD BGCOLOR="#999999">9</TD>
47 </TR>
49 <!-- 3 'real', 9 'requested' -->
50 <TR>
51 <TD BGCOLOR="#999999" COLSPAN=6>1</TD>
52 <TD BGCOLOR="#999999">7</TD>
53 <TD BGCOLOR="#999999" COLSPAN=2>8</TD>
54 </TR>
56 </TABLE>
58 <p>This is the same table as above, but instead the cells in column two
59 are requesting colspans of (1,2,1,5) respectively (i.e., excess requests have
60 been 'normalized' away). There is no more 'white gap'.</p>
62 <TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0 WIDTH="100%">
64 <!-- 8 'real', 9 'requested' -->
65 <TR>
66 <TD BGCOLOR="#999999">1</TD>
67 <TD BGCOLOR="#DDDDDD" COLSPAN=1>2</TD>
68 <TD BGCOLOR="#DDDDDD">3</TD>
69 <TD BGCOLOR="#999999">4</TD>
70 <TD >5</TD>
71 <TD >6</TD>
72 <TD >7</TD>
73 <TD BGCOLOR="#999999">8</TD>
74 </TR>
76 <!-- 7 'real', 9 'requested' -->
77 <TR>
78 <TD BGCOLOR="#999999">1</TD>
79 <TD BGCOLOR="#DDDDDD" COLSPAN=2>2</TD>
80 <TD BGCOLOR="#999999">4</TD>
81 <TD >5</TD>
82 <TD >6</TD>
83 <TD >7</TD>
84 <TD BGCOLOR="#999999">8</TD>
85 </TR>
87 <!-- 7 'real', 9 'requested' -->
88 <TR>
89 <TD BGCOLOR="#999999">1</TD>
90 <TD BGCOLOR="#DDDDDD" COLSPAN=1>2</TD>
91 <TD BGCOLOR="#DDDDDD">3</TD>
92 <TD BGCOLOR="#999999">4</TD>
93 <TD COLSPAN=2>5</TD>
94 <TD >7</TD>
95 <TD BGCOLOR="#999999">8</TD>
96 </TR>
98 <!-- 3 'real', 9 'requested' -->
99 <TR>
100 <TD BGCOLOR="#999999" COLSPAN=5>1</TD>
101 <TD BGCOLOR="#999999">6</TD>
102 <TD BGCOLOR="#999999" COLSPAN=2>7</TD>
103 </TR>
106 </TABLE>
108 </BODY>
109 </HTML>