summaryrefslogtreecommitdiff
path: root/lib/ur
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
commitc274a689b2ff024a985fe3e64086ab47e098a807 (patch)
tree7f5a6954de933ff8109ad5e87901a7b252b5fb0a /lib/ur
parent3351c5fe759c482e1cadcc26e3acb40096cdf302 (diff)
Add rowspan attribute to td,th elements.
Diffstat (limited to 'lib/ur')
-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) [] []