5 Jan
2003
5 Jan
'03
3:26 p.m.
On Thu, Jan 02, Sebastian Geerken wrote:
Before I start digging to the specs, someone may answer me this question faster: Should stripping spaces from attributes done before or after the conversions of entities? E.g., if I have something like
<td align="char" char=" ">
is the value of the "char" attribute " " (one space) or "" (empty)? Dillo does the second, so it is not possible to align characters at spaces.
Currently (last commits), the HTML parser assumes that an empty string was one space, so that CHAR="" will be equivalent to CHAR=" " or CHAR="&32;". I'll search in the specs. Sebastian