- From: poot <cvsmail@w3.org>
- Date: Sat, 6 Jun 2009 11:20:36 +0900 (JST)
- To: public-html-diffs@w3.org
Make '<' in unquoted attribute values non-conforming. (whatwg r3206) Diffs for this change per section: http://people.w3.org/mike/diffs/html5/spec/Overview.1.2359.html#attribute-value-double-quoted-state http://people.w3.org/mike/diffs/html5/spec/Overview.1.2359.html#before-attribute-value-state http://people.w3.org/mike/diffs/html5/spec/Overview.1.2359.html#syntax-attribute-value http://people.w3.org/mike/diffs/html5/spec/Overview.1.2359.html#attribute-value-unquoted-state http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2358&r2=1.2359&f=h http://html5.org/tools/web-apps-tracker?from=3205&to=3206 =================================================================== 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:21:10 UTC