James Leek <jim.leek@xxxxxxxxxxxxxx> wrote:
> Line 39, column 17: the name and VI delimiter can be omitted from
> an attribute specification only if SHORTTAG YES is specified
>
> <option selected value="4">Brands Hatch - 02/09/2003</option>
>
> Unfortunately this means nothing to me, and I can also find nothing
> about this on the W3C site. Even a search for "VI delimiter" yields
> nothing.
For "VI delimiter" read "equals sign" (=). It's an SGML thing.
Your code above should be written as:
<option selected="selected" value="4">...</option>
|