diff options
author | Karn Kallio <kkallio@eka> | 2011-06-22 12:58:43 -0530 |
---|---|---|
committer | Karn Kallio <kkallio@eka> | 2011-06-22 12:58:43 -0530 |
commit | c274a689b2ff024a985fe3e64086ab47e098a807 (patch) | |
tree | 7f5a6954de933ff8109ad5e87901a7b252b5fb0a | |
parent | 3351c5fe759c482e1cadcc26e3acb40096cdf302 (diff) |
Add rowspan attribute to td,th elements.
-rw-r--r-- | lib/ur/basis.urs | 4 |
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) [] [] |