- From: poot <cvsmail@w3.org>
- Date: Sat, 3 Apr 2010 07:39:58 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Make = after a named character reference without a semicolon in an attribute result in the character reference _not_ being replaced. (whatwg r4959) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3981&r2=1.3982&f=h http://html5.org/tools/web-apps-tracker?from=4958&to=4959 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3981 retrieving revision 1.3982 diff -u -d -r1.3981 -r1.3982 --- Overview.html 2 Apr 2010 21:49:48 -0000 1.3981 +++ Overview.html 2 Apr 2010 22:39:37 -0000 1.3982 @@ -55181,13 +55181,14 @@ <p>If the character reference is being consumed <a href="#character-reference-in-attribute-value-state" title="character reference in attribute value state">as part of an attribute</a>, and the last character matched is not a U+003B - SEMICOLON character (;), and the next character is in the range - U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), U+0041 LATIN - CAPITAL LETTER A to U+005A LATIN CAPITAL LETTER Z, or U+0061 LATIN - SMALL LETTER A to U+007A LATIN SMALL LETTER Z, then, for - historical reasons, all the characters that were matched after the - U+0026 AMPERSAND character (&) must be unconsumed, and nothing - is returned.</p> + SEMICOLON character (;), and the next character is either a U+003D + EQUALS SIGN character (=) or in the range U+0030 DIGIT ZERO (0) to + U+0039 DIGIT NINE (9), U+0041 LATIN CAPITAL LETTER A to U+005A + LATIN CAPITAL LETTER Z, or U+0061 LATIN SMALL LETTER A to U+007A + LATIN SMALL LETTER Z, then, for historical reasons, all the + characters that were matched after the U+0026 AMPERSAND character + (&) must be unconsumed, and nothing is returned.</p> + <!-- "=" added because of http://www.w3.org/Bugs/Public/show_bug.cgi?id=9207#c5 --> <p>Otherwise, return a character token for the character corresponding to the character reference name (as given by the
Received on Friday, 2 April 2010 22:40:27 UTC