diff src/css.sml @ 1258:78b36c50daf9

Fix width/height CSS choices for table rows/columns; stop warning about inability to embed type in JavaScript
author Adam Chlipala <adamc@hcoop.net>
date Sun, 16 May 2010 18:25:00 -0400
parents c316ca3c9ec6
children b4480a56cab7
line wrap: on
line diff
--- a/src/css.sml	Sun May 16 15:34:24 2010 -0400
+++ b/src/css.sml	Sun May 16 18:25:00 2010 -0400
@@ -66,10 +66,10 @@
 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),