- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 16 Aug 2010 19:28:03 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv31468
Modified Files:
Overview.html
Log Message:
<meta charset> should only work for ASCII-compatible encodings. (whatwg r5295)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4217
retrieving revision 1.4218
diff -u -d -r1.4217 -r1.4218
--- Overview.html 16 Aug 2010 19:07:27 -0000 1.4217
+++ Overview.html 16 Aug 2010 19:28:00 -0000 1.4218
@@ -56736,11 +56736,11 @@
<p><a href="#acknowledge-self-closing-flag" title="acknowledge self-closing flag">Acknowledge the
token's <i>self-closing flag</i></a>, if it is set.</p>
- <p id="meta-charset-during-parse">If the element has a <code title="attr-meta-charset"><a href="#attr-meta-charset">charset</a></code> attribute, and its
- value is a supported encoding, and the <a href="#concept-encoding-confidence" title="concept-encoding-confidence">confidence</a> is
- currently <i>tentative</i>, then <a href="#change-the-encoding">change the
- encoding</a> to the encoding given by the value of the
- <code title="attr-meta-charset"><a href="#attr-meta-charset">charset</a></code> attribute.</p>
+ <p id="meta-charset-during-parse">If the element has a <code title="attr-meta-charset"><a href="#attr-meta-charset">charset</a></code> attribute, and its value
+ is either a supported <a href="#ascii-compatible-character-encoding">ASCII-compatible character
+ encoding</a> or a UTF-16 encoding, and the <a href="#concept-encoding-confidence" title="concept-encoding-confidence">confidence</a> is currently
+ <i>tentative</i>, then <a href="#change-the-encoding">change the encoding</a> to the
+ encoding given by the value of the <code title="attr-meta-charset"><a href="#attr-meta-charset">charset</a></code> attribute.</p>
<p>Otherwise, if the element has an <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv">http-equiv</a></code> attribute whose
value is an <a href="#ascii-case-insensitive">ASCII case-insensitive</a> match for the
Received on Monday, 16 August 2010 19:28:05 UTC