Hi, While doing some tests, I found that some simple "illegal values" examples from http://www.w3.org/TR/CSS21/syndata.html#parsing-errors and http://www.w3.org/TR/REC-CSS1#css1-conformance seem to be badly validated by the validator. First of them is: img { background: "red" } /* keywords cannot be quoted */ The validator does not throw any error nor warning, and produces this "validated" CSS: img { background : ; } wich is actually invalid. The correct produced style sheet should be: img { } The second is quite similar: img { float: left here } /* "here" is not a value of 'float' */ No errors nor warnings are produced, and the "valid" CSS produced is: img { float : left; } instead of img { } according to the specifications. An intersting point is that: img { float: here left } throws a validation error. Thanks, Jean-Guilhem RouelReceived on Wednesday, 13 July 2005 08:26:45 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Wednesday, 27 June 2012 00:14:16 GMT