about summary refs log tree commit diff stats
path: root/test/layout/table-rowspan.html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-04-21 21:26:27 +0200
committerbptato <nincsnevem662@gmail.com>2024-04-21 21:28:45 +0200
commite3d9ee2c6224cd30bf56e24f7988899e0e3985c1 (patch)
tree31116d7d751d058f32bf43313c12673423e8d8be /test/layout/table-rowspan.html
parentba88f015ea500bcc574b621392c721ef2c9dbcd0 (diff)
downloadchawan-e3d9ee2c6224cd30bf56e24f7988899e0e3985c1.tar.gz
test: add js & layout tests
(Sadly some layout tests still fail.)
Diffstat (limited to 'test/layout/table-rowspan.html')
-rw-r--r--test/layout/table-rowspan.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/layout/table-rowspan.html b/test/layout/table-rowspan.html
new file mode 100644
index 00000000..60720a1f
--- /dev/null
+++ b/test/layout/table-rowspan.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML>
+<TABLE>
+<TR>
+<TD>
+row 1, cell 1
+</TD>
+<TD ROWSPAN=3>
+rowspan 3 (centered on row 2)
+</TD>
+<TD>
+row 1, cell 3
+</TD>
+</TR>
+<TR>
+<TD>
+row 2, cell 1
+</TD>
+<TD>
+row 2, cell 3
+</TD>
+</TR>
+<TR>
+<TD>
+row 3, cell 1
+</TD>
+<TD>
+row 3, cell 3
+</TD>
+</TR>
+</TABLE>