html5/spec Overview.html,1.3981,1.3982

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv28962

Modified Files:
	Overview.html 
Log Message:
Make = after a named character reference without a semicolon in an attribute result in the character reference _not_ being replaced. (whatwg r4959)

Index: Overview.html
===================================================================
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 (&amp;) 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
+    (&amp;) 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:39:42 UTC