[Bug 12938] “The attribute value can remain unquoted if it doesn't contain spaces or […]” Please replace “spaces” with “whitespace” to avoid confusion.

http://www.w3.org/Bugs/Public/show_bug.cgi?id=12938

--- Comment #1 from Mathias Bynens <mathias@qiwi.be> 2011-06-11 07:02:13 UTC ---
All kinds of whitespace characters are disallowed in attribute values. For
example, these two will have the exact same result:

    <!-- spaces -->
    <p id=foo  bar>
    <!-- tabs -->
    <p id=foo            bar>

Obviously, `bar` will be considered as a separate attribute, and won’t be
part of the @id attribute value.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Saturday, 11 June 2011 07:02:19 UTC