summaryrefslogtreecommitdiff
path: root/src/css.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2010-05-16 18:25:00 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2010-05-16 18:25:00 -0400
commite5c543adfe4a27b347ce2e78a94727f1e50c8f43 (patch)
tree41ee96d1986c8b69ffa4b2be9f9b5403144ca480 /src/css.sml
parentbee7344f8b4ce196b759132bddcd036caa3aaca2 (diff)
Fix width/height CSS choices for table rows/columns; stop warning about inability to embed type in JavaScript
Diffstat (limited to 'src/css.sml')
-rw-r--r--src/css.sml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/css.sml b/src/css.sml
index 3df35ed1..31c4b9b1 100644
--- a/src/css.sml
+++ b/src/css.sml
@@ -66,10 +66,10 @@ val nada = ([], [])
val block = ([Block], [OBlock, Width, Height])
val inline = ([], [NonReplacedInline])
val list = ([Block, List], [OBlock, Width, Height])
-val replaced = ([], [ ReplacedInline, Width, Height])
+val replaced = ([], [ReplacedInline, Width, Height])
val table = ([Block, Table], [OBlock, OTable, Width, Height])
-val tr = ([Block], [OBlock, Tr, Width])
-val td = ([Block, Td], [OBlock, OTd, Height])
+val tr = ([Block], [OBlock, Tr, Height])
+val td = ([Block, Td], [OBlock, OTd, Width])
val tags = [("span", inline),
("div", block),