layout/reftests/table-background/backgr_border-table-row-group.html

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

michael@0 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
michael@0 2 <head>
michael@0 3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
michael@0 4 <title>Background on 'table-row-group'</title>
michael@0 5 <link rel="next" href="backgr_border-table-column-group.html" title="Background with Borders: Background on 'table-column-group'">
michael@0 6 <link rel="prev" href="backgr_border-table.html" title="Background with Borders: Background on 'table'">
michael@0 7 <link rel="contents" href="./backgr_index.html" title="Table of Contents">
michael@0 8 <link rel="stylesheet" type="text/css" href="common.css">
michael@0 9 <style type="text/css">
michael@0 10
michael@0 11 table { border: 3px dotted}
michael@0 12 thead {background: black url(edge.gif) top right no-repeat; border: 5px dashed}
michael@0 13 .d { border: 5px dashed}
michael@0 14 tbody {background: black url(edge.gif) bottom left no-repeat; border: 5px dashed}
michael@0 15 .k { border: 5px dashed}
michael@0 16
michael@0 17 </style>
michael@0 18 </head>
michael@0 19 <body>
michael@0 20 <h1>CSS2 Table Backgrounds Test Suite</h1>
michael@0 21
michael@0 22 <h2>Part D: Background with Borders</h2>
michael@0 23
michael@0 24 <h3>Background on 'table-row-group'</h3>
michael@0 25
michael@0 26 <p>There should be three aqua stripes along the top of cells A, B, C, and D in the first row and three stripes along the right edge of D, the last cell in that row. The stripes should align to be just inside the padding edge of cell D.</p>
michael@0 27 <p>There should be three aqua stripes along the bottom of cells J, K, and L. The stripes continue across the bottom of cell E, but are partially obscured by the border. The stripes turn up at cell E's bottom left corner to run under its border a few pixels to the right of its left border edge. The stripes will align to be just above cell K's bottom padding edge.</p>
michael@0 28
michael@0 29 <dl>
michael@0 30 <dt>next
michael@0 31 <dd><a href="backgr_border-table-column-group.html">Background with Borders: Background on 'table-column-group'</a>
michael@0 32 <dt>previous
michael@0 33 <dd><a href="backgr_border-table.html">Background with Borders: Background on 'table'</a>
michael@0 34 <dt>contents
michael@0 35 <dd><a href="./backgr_index.html">Table of Contents</a>
michael@0 36 </dl>
michael@0 37
michael@0 38
michael@0 39 <table class="separate">
michael@0 40 <caption>With 'border-collapse: separate'</caption>
michael@0 41 <colgroup class="colgroup-A">
michael@0 42 <col class="col-1">
michael@0 43 <col class="col-2">
michael@0 44 <col class="col-3">
michael@0 45 </colgroup>
michael@0 46 <colgroup class="colgroup-B">
michael@0 47 <col class="col-4">
michael@0 48 </colgroup>
michael@0 49 <thead>
michael@0 50 <tr class="th-row-1">
michael@0 51 <th class="a">TH A</th>
michael@0 52 <th class="b">TH B</th>
michael@0 53 <th class="c">TH C</th>
michael@0 54 <th class="d">TH D</th>
michael@0 55 </tr>
michael@0 56 </thead>
michael@0 57 <tfoot>
michael@0 58 <tr class="tf-row-1">
michael@0 59 <td class="m" colspan=2>TD M</td>
michael@0 60
michael@0 61 <td class="o">TD O</td>
michael@0 62 <td class="p">TD P</td>
michael@0 63 </tfoot>
michael@0 64 <tbody>
michael@0 65 <tr class="tb-row-1">
michael@0 66 <td class="e" rowspan=2>TD E</td>
michael@0 67 <td class="f">TD F</td>
michael@0 68 <td class="g">TD G</td>
michael@0 69 <td class="h">TD H</td>
michael@0 70 </tr>
michael@0 71 <tr class="tb-row-2">
michael@0 72
michael@0 73 <td class="j">TD J</td>
michael@0 74 <td class="k">TD K</td>
michael@0 75 <td class="l">TD L</td>
michael@0 76 </tr>
michael@0 77 </tbody>
michael@0 78 </table>
michael@0 79
michael@0 80 <table class="collapse">
michael@0 81 <caption>With 'border-collapse: collapse'</caption>
michael@0 82 <colgroup class="colgroup-A">
michael@0 83 <col class="col-1">
michael@0 84 <col class="col-2">
michael@0 85 <col class="col-3">
michael@0 86 </colgroup>
michael@0 87 <colgroup class="colgroup-B">
michael@0 88 <col class="col-4">
michael@0 89 </colgroup>
michael@0 90 <thead>
michael@0 91 <tr class="th-row-1">
michael@0 92 <th class="a">TH A</th>
michael@0 93 <th class="b">TH B</th>
michael@0 94 <th class="c">TH C</th>
michael@0 95 <th class="d">TH D</th>
michael@0 96 </tr>
michael@0 97 </thead>
michael@0 98 <tfoot>
michael@0 99 <tr class="tf-row-1">
michael@0 100 <td class="m" colspan=2>TD M</td>
michael@0 101
michael@0 102 <td class="o">TD O</td>
michael@0 103 <td class="p">TD P</td>
michael@0 104 </tfoot>
michael@0 105 <tbody>
michael@0 106 <tr class="tb-row-1">
michael@0 107 <td class="e" rowspan=2>TD E</td>
michael@0 108 <td class="f">TD F</td>
michael@0 109 <td class="g">TD G</td>
michael@0 110 <td class="h">TD H</td>
michael@0 111 </tr>
michael@0 112 <tr class="tb-row-2">
michael@0 113
michael@0 114 <td class="j">TD J</td>
michael@0 115 <td class="k">TD K</td>
michael@0 116 <td class="l">TD L</td>
michael@0 117 </tr>
michael@0 118 </tbody>
michael@0 119 </table>
michael@0 120 <div class="validity">
michael@0 121 <a href="http://validator.w3.org/check/referer"><img
michael@0 122 src="valid-html401.png" height="31" width="88"
michael@0 123 alt="Valid HTML 4.01!"></a>
michael@0 124 </div>
michael@0 125 <address>
michael@0 126 CSS2 Table Backgrounds Test Suite designed and written by fantasai &lt;fantasai&#64;escape.com&gt;
michael@0 127 </address>
michael@0 128
michael@0 129 </body>
michael@0 130 </html>

mercurial