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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/backgr_border-table-collapsed-border.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 <title>Background on 'table'</title> 3 <title>Background on 'table'</title>
4 <link rel="next" href="backgr_border-table-row-group.html" title="Background wit h Borders: Background on 'table-row-group'"> 4 <link rel="next" href="backgr_border-table-row-group.html" title="Background wit h Borders: Background on 'table-row-group'">
5 <link rel="prev" href="backgr_layers-opacity.html" title="Background with Border s: Background on 'table-cell'"> 5 <link rel="prev" href="backgr_layers-opacity.html" title="Background with Border s: Background on 'table-cell'">
6 <link rel="contents" href="./backgr_index.html" title="Table of Contents"> 6 <link rel="contents" href="./backgr_index.html" title="Table of Contents">
7 <link rel="stylesheet" type="text/css" href="common.css"> 7 <link rel="stylesheet" type="text/css" href="resources/common.css">
8 <style type="text/css"> 8 <style type="text/css">
9 9
10 table {background: black url(../images/edge.gif) top left no-repeat; border: 5 px dotted;} 10 table {background: black url(resources/edge.gif) top left no-repeat; border: 5 px dotted;}
11 11
12 </style> 12 </style>
13 </head> 13 </head>
14 <body> 14 <body>
15 <h1>CSS2 Table Backgrounds Test Suite</h1>
16
17 <h2>Part D: Background with Borders</h2>
18
19 <h3>Background on 'table'</h3> 15 <h3>Background on 'table'</h3>
20
21 <p>There should be three aqua stripes just inside the bottom and right table borders.</p> 16 <p>There should be three aqua stripes just inside the bottom and right table borders.</p>
22
23 <dl>
24 <dt>next
25 <dd><a href="backgr_border-table-row-group.html">Background with Borde rs: Background on 'table-row-group'</a>
26 <dt>previous
27 <dd><a href="backgr_layers-opacity.html">Background with Borders: Back ground on 'table-cell'</a>
28 <dt>contents
29 <dd><a href="./backgr_index.html">Table of Contents</a>
30 </dl>
31
32 <table class="separate">
33 <caption>With 'border-collapse: separate'</caption>
34 <colgroup class="colgroup-A">
35 <col class="col-1">
36 <col class="col-2">
37 <col class="col-3">
38 </colgroup>
39 <colgroup class="colgroup-B">
40 <col class="col-4">
41 </colgroup>
42 <thead>
43 <tr id="th-row-1">
44 <th class="a">TH A</th>
45 <th class="b">TH B</th>
46 <th class="c">TH C</th>
47 <th class="d">TH D</th>
48 </tr>
49 </thead>
50 <tbody>
51 <tr class="tb-row-1">
52 <td class="e" rowspan=2>TD E</td>
53 <td class="f">TD F</td>
54 <td class="g">TD G</td>
55 <td class="h">TD H</td>
56 </tr>
57 <tr class="tb-row-2">
58
59 <td class="j">TD J</td>
60 <td class="k">TD K</td>
61 <td class="l">TD L</td>
62 </tr>
63 </tbody>
64 <tfoot>
65 <tr id="tb-row-1">
66 <td class="m" colspan=2>TD M</td>
67
68 <td class="o">TD O</td>
69 <td class="p">TD P</td>
70 </tfoot>
71 </table>
72
73 <table class="collapse"> 17 <table class="collapse">
74 <caption>With 'border-collapse: collapse'</caption> 18 <caption>With 'border-collapse: collapse'</caption>
75 <colgroup class="colgroup-A"> 19 <colgroup class="colgroup-A">
76 <col class="col-1"> 20 <col class="col-1">
77 <col class="col-2"> 21 <col class="col-2">
78 <col class="col-3"> 22 <col class="col-3">
79 </colgroup> 23 </colgroup>
80 <colgroup class="colgroup-B"> 24 <colgroup class="colgroup-B">
81 <col class="col-4"> 25 <col class="col-4">
82 </colgroup> 26 </colgroup>
(...skipping 22 matching lines...) Expand all
105 <tr class="tb-row-2"> 49 <tr class="tb-row-2">
106 50
107 <td class="j">TD J</td> 51 <td class="j">TD J</td>
108 <td class="k">TD K</td> 52 <td class="k">TD K</td>
109 <td class="l">TD L</td> 53 <td class="l">TD L</td>
110 </tr> 54 </tr>
111 </tbody> 55 </tbody>
112 </table> 56 </table>
113 <div class="validity"> 57 <div class="validity">
114 <a href="http://validator.w3.org/check/referer"><img 58 <a href="http://validator.w3.org/check/referer"><img
115 src="../images/valid-html401.png" height="31" width="88" 59 src="resources/valid-html401.png" height="31" width="88"
116 alt="Valid HTML 4.01!"></a> 60 alt="Valid HTML 4.01!"></a>
117 </div> 61 </div>
118 <address> 62 <address>
119 CSS2 Table Backgrounds Test Suite designed and written by fantasai &lt;fantasa i&#64;escape.com&gt; 63 CSS2 Table Backgrounds Test Suite designed and written by fantasai &lt;fantasa i&#64;escape.com&gt;
120 </address> 64 </address>
121 65
122 </body> 66 </body>
123 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698