summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht50
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht b/testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht
new file mode 100644
index 0000000000..1adff91e8e
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/tables/table-visual-layout-014.xht
@@ -0,0 +1,50 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>CSS Test: A spanning cell's rectangle must be as far to the right as possible in an 'rtl' table</title>
+ <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
+ <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layout" />
+ <meta name="assert" content="With 'rtl' tables, the spanning cell's rectangle is as far to the right as possible, but to the left of all cells in the same row that were earlier in source (no overlapping)." />
+ <style type="text/css">
+ table
+ {
+ direction: rtl;
+ }
+ td
+ {
+ border: 1px solid black;
+ height: 100px;
+ width: 100px;
+ }
+ #cell
+ {
+ background: black;
+ }
+ .cell
+ {
+ background: blue;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if the black square is to the left of both blue boxes on the page.</p>
+ <table>
+ <tr>
+ <td></td>
+ <td class="cell" rowspan="2"></td>
+ <td></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td class="cell"></td>
+ <td id="cell" rowspan="2" colspan="2"></td>
+ </tr>
+ <tr>
+ <td></td>
+ </tr>
+ <tr>
+ <td></td>
+ </tr>
+ </table>
+ </body>
+</html> \ No newline at end of file