- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 06 Jun 2009 02:19:06 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv3221 Modified Files: Overview.html Log Message: Make '<' in unquoted attribute values non-conforming. (whatwg r3206) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2358 retrieving revision 1.2359 diff -u -d -r1.2358 -r1.2359 --- Overview.html 6 Jun 2009 01:28:46 -0000 1.2358 +++ Overview.html 6 Jun 2009 02:19:03 -0000 1.2359 @@ -52717,9 +52717,10 @@ must not contain any literal <a href="#space-character" title="space character">space characters</a>, any U+0022 QUOTATION MARK (<code>"</code>) characters, U+0027 APOSTROPHE (<code>'</code>) characters, - U+003D EQUALS SIGN (<code>=</code>) characters, or U+003E - GREATER-THAN SIGN (<code>></code>) characters, and must not be - the empty string.</p> + U+003D EQUALS SIGN (<code>=</code>) characters, U+003C LESS-THAN + SIGN (<code><</code>) characters, or U+003E GREATER-THAN SIGN + (<code>></code>) characters, and must not be the empty + string.</p> <div class="example"> @@ -54521,6 +54522,7 @@ <dd><a href="#parse-error">Parse error</a>. Emit the current tag token. Switch to the <a href="#data-state">data state</a>.</dd> + <dt>U+003C LESS-THAN SIGN (<)</dt> <dt>U+003D EQUALS SIGN (=)</dt> <dd><a href="#parse-error">Parse error</a>. Treat it as per the "anything else" entry below.</dd> @@ -54530,8 +54532,8 @@ <a href="#data-state">data state</a>.</dd> <dt>Anything else</dt> - <dd>Append the <a href="#current-input-character">current input character</a> to the current attribute's - value. Switch to the <a href="#attribute-value-unquoted-state">attribute value (unquoted) + <dd>Append the <a href="#current-input-character">current input character</a> to the current + attribute's value. Switch to the <a href="#attribute-value-unquoted-state">attribute value (unquoted) state</a>.</dd> </dl><h5 id="attribute-value-double-quoted-state"><span class="secno">9.2.4.10 </span><dfn>Attribute value (double-quoted) state</dfn></h5> @@ -54600,6 +54602,7 @@ <dt>U+0022 QUOTATION MARK (")</dt> <dt>U+0027 APOSTROPHE (')</dt> + <dt>U+003C LESS-THAN SIGN (<)</dt> <dt>U+003D EQUALS SIGN (=)</dt> <dd><a href="#parse-error">Parse error</a>. Treat it as per the "anything else" entry below.</dd>
Received on Saturday, 6 June 2009 02:19:11 UTC