Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/backgr_position-table-row-group.html

Issue 2600903002: Paint the whole of a table-part background image behind the cells in a table (Closed)
Patch Set: Paint the whole of an image behind the cells in a table Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <head> 2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4 <title>Background on 'table-row-group'</title> 4 <title>Background on 'table-row-group'</title>
5 <link rel="next" href="backgr_position-table-column-group.html" title="Backgroun d Position: Background on 'table-row-group'"> 5 <link rel="next" href="backgr_position-table-column-group.html" title="Backgroun d Position: Background on 'table-row-group'">
6 <link rel="prev" href="backgr_position-table.html" title="Background Position: B ackground on 'table'"> 6 <link rel="prev" href="backgr_position-table.html" title="Background Position: B ackground on 'table'">
7 <link rel="contents" href="./backgr_index.html" title="Table of Contents"> 7 <link rel="contents" href="./backgr_index.html" title="Table of Contents">
8 <link rel="stylesheet" type="text/css" href="common.css"> 8 <link rel="stylesheet" type="text/css" href="resources/common.css">
9 <style type="text/css"> 9 <style type="text/css">
10 10
11 thead {background: black url(../images/edge.gif) top right no-repeat} 11 thead {background: black url(resources/edge.gif) top right no-repeat}
12 tbody {background: black url(../images/edge.gif) bottom left no-repeat} 12 tbody {background: black url(resources/edge.gif) bottom left no-repeat}
13 13
14 </style> 14 </style>
15 </head> 15 </head>
16 <body> 16 <body>
17 <h1>CSS2 Table Backgrounds Test Suite</h1> 17 <h3>crbug.com/35679: Background on 'table-row-group'</h3>
18
19 <h2>Part B: Background Position</h2>
20
21 <h3>Background on 'table-row-group'</h3>
22
23 <p>There should be three aqua stripes along the top border edge of each cell in the first row and three stripes along the right border edge of the last cell in that row.</p>
24 <p>There should be three aqua stripes along the bottom border edge of cells E, J, K, and L. There should also be
25 three vertical aqua stripes along the left edge of cell E.</p>
26
27 <dl>
28 <dt>next
29 <dd><a href="backgr_position-table-column-group.html">Background Posit ion: Background on 'table-column-group'</a>
30 <dt>previous
31 <dd><a href="backgr_position-table.html">Background Position: Backgrou nd on 'table'</a>
32 <dt>contents
33 <dd><a href="./backgr_index.html">Table of Contents</a>
34 </dl>
35
36
37 <table class="separate"> 18 <table class="separate">
38 <caption>With 'border-collapse: separate'</caption> 19 <caption>With 'border-collapse: separate'</caption>
39 <colgroup class="colgroup-A"> 20 <colgroup class="colgroup-A">
40 <col class="col-1"> 21 <col class="col-1">
41 <col class="col-2"> 22 <col class="col-2">
42 <col class="col-3"> 23 <col class="col-3">
43 </colgroup> 24 </colgroup>
44 <colgroup class="colgroup-B"> 25 <colgroup class="colgroup-B">
45 <col class="col-4"> 26 <col class="col-4">
46 </colgroup> 27 </colgroup>
(...skipping 20 matching lines...) Expand all
67 <td class="h">TD H</td> 48 <td class="h">TD H</td>
68 </tr> 49 </tr>
69 <tr class="tb-row-2"> 50 <tr class="tb-row-2">
70 51
71 <td class="j">TD J</td> 52 <td class="j">TD J</td>
72 <td class="k">TD K</td> 53 <td class="k">TD K</td>
73 <td class="l">TD L</td> 54 <td class="l">TD L</td>
74 </tr> 55 </tr>
75 </tbody> 56 </tbody>
76 </table> 57 </table>
58 <p>There should be three aqua stripes along the top border edge of each cell in the first row and three stripes along the right border edge of the last cell in that row.</p>
59 <p>There should be three aqua stripes along the bottom border edge of cells E, J, K, and L. There should also be
60 three vertical aqua stripes along the left edge of cell E.</p>
77 61
78 <table class="collapse">
79 <caption>With 'border-collapse: collapse'</caption>
80 <colgroup class="colgroup-A">
81 <col class="col-1">
82 <col class="col-2">
83 <col class="col-3">
84 </colgroup>
85 <colgroup class="colgroup-B">
86 <col class="col-4">
87 </colgroup>
88 <thead>
89 <tr class="th-row-1">
90 <th class="a">TH A</th>
91 <th class="b">TH B</th>
92 <th class="c">TH C</th>
93 <th class="d">TH D</th>
94 </tr>
95 </thead>
96 <tfoot>
97 <tr class="tf-row-1">
98 <td class="m" colspan=2>TD M</td>
99 62
100 <td class="o">TD O</td>
101 <td class="p">TD P</td>
102 </tfoot>
103 <tbody>
104 <tr class="tb-row-1">
105 <td class="e" rowspan=2>TD E</td>
106 <td class="f">TD F</td>
107 <td class="g">TD G</td>
108 <td class="h">TD H</td>
109 </tr>
110 <tr class="tb-row-2">
111
112 <td class="j">TD J</td>
113 <td class="k">TD K</td>
114 <td class="l">TD L</td>
115 </tr>
116 </tbody>
117 </table>
118 <div class="validity"> 63 <div class="validity">
119 <a href="http://validator.w3.org/check/referer"><img 64 <a href="http://validator.w3.org/check/referer"><img
120 src="../images/valid-html401.png" height="31" width="88" 65 src="resources/valid-html401.png" height="31" width="88"
121 alt="Valid HTML 4.01!"></a> 66 alt="Valid HTML 4.01!"></a>
122 </div> 67 </div>
123 <address> 68 <address>
124 CSS2 Table Backgrounds Test Suite designed and written by fantasai &lt;fantasa i&#64;escape.com&gt; 69 CSS2 Table Backgrounds Test Suite designed and written by fantasai &lt;fantasa i&#64;escape.com&gt;
125 </address> 70 </address>
126 71
127 </body> 72 </body>
128 </html> 73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698