I disagree, there are so many other things you need to take account of if you were (for example) getting all the text out of an HTML document. Text and markup in comment nodes would just through a spanner in the works for starters. <br>
<br>It all boils down to the fact that the only thing disallowing ">" in attribute values does is simplify regex scanning of HTML (which *isn't* parsing). Seeing as regex parsing of HTML is wrong in so many ways, and isn't something that should be (IMO) encouraged in the slightest, I don't see any reason to change the allowance for ">" characters in attributes.<br>
<br>David W.<br><br><div class="gmail_quote">On 25 June 2010 10:46, Skrol29 <span dir="ltr"><<a href="mailto:skrol29forum%2Bwhatwg@gmail.com">skrol29forum+whatwg@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im">On 24 Jun 2010, at 14:11, Benjamin M. Schwartz wrote:<br>
<br>
>>> Why would it simplify parsing?<br>
<br>
>> It greatly simplifies parsing when you just want to extract entire<br>
>> tags, without immediately parsing the attributes.<br>
<br>
>If you mean "parsing" with regular expressions, then I think that's a bad<br>
practice and shouldn't be encouraged.<br>
<br>
</div>A agree disallowing ">" chars in attributes greatly simplifies parsing. Not<br>
only with regular expressions, but any parsing.<br>
If ">" are allowed, it means that in order to found the end of the element<br>
you do have to read all attributes before. This is very costy. Just an<br>
example but they are many others:  let's image you'd like to convert an HTML<br>
document into flat text. To simplify you're algorithm you've chosen  to<br>
retrieve the content of the <body> element and then to delete all elements<br>
in it. This is very fast if ">" are not allowed in attributes because you're<br>
able found elements bounds just by searching "<" and then ">".  But if ">"<br>
are allowed, the operation gets much more complicated, and you spend much<br>
more time to scan all elements.<br>
<br>
In my opinion, the gain of allowing ">" is so poor regarding to the troubles<br>
it makes, that it should be forbidden in both XML and HTML (any version).<br>
<div class="im"><br>
> Also take into consideration that even if ">" was forbidden in the<br>
> spec, it wouldn't mean it doesn't happen in the wild. Since it works in<br>
browsers, you'd still have to support it if you wanted to parse markup from<br>
the web.<br>
<br>
</div>Allowing it in the spec and how the browser should  behave if it is anyway<br>
are two different things.<br>
<br>
Regards,<br>
<font color="#888888">Skrol29<br>
<br>
</font></blockquote></div><br>