summaryrefslogtreecommitdiff
path: root/lib/ur/basis.urs
diff options
context:
space:
mode:
authorGravatar Karn Kallio <kkallio@eka>2011-06-22 12:58:43 -0530
committerGravatar Karn Kallio <kkallio@eka>2011-06-22 12:58:43 -0530
commit7d08ad55454bd7a09315027f6e8bda5ad09de826 (patch)
tree7f5a6954de933ff8109ad5e87901a7b252b5fb0a /lib/ur/basis.urs
parent412cc613b30e6e5ef52f22eb01fbbdca734e9860 (diff)
Add rowspan attribute to td,th elements.
Diffstat (limited to 'lib/ur/basis.urs')
-rw-r--r--lib/ur/basis.urs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ur/basis.urs b/lib/ur/basis.urs
index bb671388..c4f5b2aa 100644
--- a/lib/ur/basis.urs
+++ b/lib/ur/basis.urs
@@ -824,10 +824,10 @@ val tr : other ::: {Unit} -> [other ~ [Body, Table, Tr]] => unit
-> tag tableAttrs
([Body, Table] ++ other) ([Body, Tr] ++ other) [] []
val th : other ::: {Unit} -> [other ~ [Body, Tr]] => unit
- -> tag ([Colspan = int] ++ tableAttrs)
+ -> tag ([Colspan = int, Rowspan = int] ++ tableAttrs)
([Body, Tr] ++ other) ([Body] ++ other) [] []
val td : other ::: {Unit} -> [other ~ [Body, Tr]] => unit
- -> tag ([Colspan = int] ++ tableAttrs)
+ -> tag ([Colspan = int, Rowspan = int] ++ tableAttrs)
([Body, Tr] ++ other) ([Body] ++ other) [] []