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/writing-mode/tables/vertical-border-collapse-2.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | uxp-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/writing-mode/tables/vertical-border-collapse-2.html')
-rw-r--r-- | layout/reftests/writing-mode/tables/vertical-border-collapse-2.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/tables/vertical-border-collapse-2.html b/layout/reftests/writing-mode/tables/vertical-border-collapse-2.html new file mode 100644 index 0000000000..9c602ebdbb --- /dev/null +++ b/layout/reftests/writing-mode/tables/vertical-border-collapse-2.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<style> +table { + margin: 10px; + border: 8px solid silver; + border-right-color: #666; + border-bottom-color: #333; + border-spacing: 5px; + border-collapse: collapse; + writing-mode: vertical-rl; +} +td { + border: 4px solid black; + height: 50px; + width: 20px; + text-align: center; +} +td.w1 { + height: 80px; +} +td.w2 { + height: 120px; +} +tr:nth-child(even) { + background: #ffc; +} +tr:nth-child(odd) { + background: #cff; +} +tr:nth-child(1) { + background: #fcf; + width: 50px; +} +</style> +</head> +<body> + +<table> +<tr><td colspan=3> </td> <td> </td> </tr> +<tr><td rowspan=3> </td><td class="w1"> </td><td> </td><td> </td> </tr> +<tr> <td> </td> <td> </td><td rowspan=2> </td> </tr> +<tr> <td> </td> <td> </td> </tr> +<tr><td> </td> <td> </td> <td> </td><td class="w2"> </td></tr> +</table> + +</body> +</html> |