diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/writing-mode/tables/sideways-lr-row-progression-1-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/writing-mode/tables/sideways-lr-row-progression-1-ref.html')
-rw-r--r-- | layout/reftests/writing-mode/tables/sideways-lr-row-progression-1-ref.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/tables/sideways-lr-row-progression-1-ref.html b/layout/reftests/writing-mode/tables/sideways-lr-row-progression-1-ref.html new file mode 100644 index 0000000000..930ce16dd9 --- /dev/null +++ b/layout/reftests/writing-mode/tables/sideways-lr-row-progression-1-ref.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<title>CSS Reference: sideways-lr Table Row/Rowgroup/Cell Ordering</title> +<link rel="author" title="Jonathan Kew" href="mailto:jfkthame@gmail.com"> +<link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#writing-mode"> +<!-- based on vertical-rl Table Row/Rowgroup/Cell Ordering tests by Elika J. Etemad --> + +<style> + table { + border-spacing: 0; + margin: 1em; + } + td { + width: 1em; + height: 1em; + border: solid gray; + } + + .a { background: navy} + .b { background: blue } + .c { background: aqua } + .d { background: teal } + .e { background: purple } + .f { background: fuchsia } + .g { background: yellow } + .h { background: orange } +</style> + +<table> + <tr> + <td rowspan=2> + <td class="e"> + <td rowspan=2 colspan=2> + <td rowspan=3> + <td class="d"> + </tr> + <tr> + <td rowspan=2> + <td class="c"> + </tr> + <tr> + <td class="b"> + <td class="f"> + <td class="g"> + <td rowspan=2> + </tr> + <tr> + <td class="a"> + <td colspan=3> + <td class="h"> + </tr> +</table> |