diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/table-background/backgr_border-table.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/table-background/backgr_border-table.html')
-rw-r--r-- | layout/reftests/table-background/backgr_border-table.html | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/layout/reftests/table-background/backgr_border-table.html b/layout/reftests/table-background/backgr_border-table.html new file mode 100644 index 000000000..a7fbd0d36 --- /dev/null +++ b/layout/reftests/table-background/backgr_border-table.html @@ -0,0 +1,123 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> +<head> +<title>Background on 'table'</title> +<link rel="next" href="backgr_border-table-row-group.html" title="Background with Borders: Background on 'table-row-group'"> +<link rel="prev" href="backgr_layers-opacity.html" title="Background with Borders: Background on 'table-cell'"> +<link rel="contents" href="./backgr_index.html" title="Table of Contents"> +<link rel="stylesheet" type="text/css" href="common.css"> +<style type="text/css"> + + table {background: black url(edge.gif) top left no-repeat; border: 5px dotted;} + +</style> +</head> +<body> +<h1>CSS2 Table Backgrounds Test Suite</h1> + +<h2>Part D: Background with Borders</h2> + + <h3>Background on 'table'</h3> + + <p>There should be three aqua stripes just inside the bottom and right table borders.</p> + + <dl> + <dt>next + <dd><a href="backgr_border-table-row-group.html">Background with Borders: Background on 'table-row-group'</a> + <dt>previous + <dd><a href="backgr_layers-opacity.html">Background with Borders: Background on 'table-cell'</a> + <dt>contents + <dd><a href="./backgr_index.html">Table of Contents</a> + </dl> + + <table class="separate"> + <caption>With 'border-collapse: separate'</caption> + <colgroup class="colgroup-A"> + <col class="col-1"> + <col class="col-2"> + <col class="col-3"> + </colgroup> + <colgroup class="colgroup-B"> + <col class="col-4"> + </colgroup> + <thead> + <tr id="th-row-1"> + <th class="a">TH A</th> + <th class="b">TH B</th> + <th class="c">TH C</th> + <th class="d">TH D</th> + </tr> + </thead> + <tbody> + <tr class="tb-row-1"> + <td class="e" rowspan=2>TD E</td> + <td class="f">TD F</td> + <td class="g">TD G</td> + <td class="h">TD H</td> + </tr> + <tr class="tb-row-2"> + + <td class="j">TD J</td> + <td class="k">TD K</td> + <td class="l">TD L</td> + </tr> + </tbody> + <tfoot> + <tr id="tb-row-1"> + <td class="m" colspan=2>TD M</td> + + <td class="o">TD O</td> + <td class="p">TD P</td> + </tfoot> + </table> + + <table class="collapse"> + <caption>With 'border-collapse: collapse'</caption> + <colgroup class="colgroup-A"> + <col class="col-1"> + <col class="col-2"> + <col class="col-3"> + </colgroup> + <colgroup class="colgroup-B"> + <col class="col-4"> + </colgroup> + <thead> + <tr id="th-row-1"> + <th class="a">TH A</th> + <th class="b">TH B</th> + <th class="c">TH C</th> + <th class="d">TH D</th> + </tr> + </thead> + <tfoot> + <tr id="tb-row-1"> + <td class="m" colspan=2>TD M</td> + + <td class="o">TD O</td> + <td class="p">TD P</td> + </tfoot> + <tbody> + <tr class="tb-row-1"> + <td class="e" rowspan=2>TD E</td> + <td class="f">TD F</td> + <td class="g">TD G</td> + <td class="h">TD H</td> + </tr> + <tr class="tb-row-2"> + + <td class="j">TD J</td> + <td class="k">TD K</td> + <td class="l">TD L</td> + </tr> + </tbody> + </table> +<div class="validity"> + <a href="http://validator.w3.org/check/referer"><img + src="valid-html401.png" height="31" width="88" + alt="Valid HTML 4.01!"></a> +</div> +<address> + CSS2 Table Backgrounds Test Suite designed and written by fantasai <fantasai@escape.com> +</address> + +</body> +</html> |