- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 12 Apr 2010 06:47:36 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17984
Modified Files:
Overview.html
Log Message:
Change how <meta> is processed during parsing to require an explicit http-equiv=content-type where applicable. (whatwg r4994)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4011
retrieving revision 1.4012
diff -u -d -r1.4011 -r1.4012
--- Overview.html 12 Apr 2010 06:43:50 -0000 1.4011
+++ Overview.html 12 Apr 2010 06:47:32 -0000 1.4012
@@ -56397,12 +56397,15 @@
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 a <code title="attr-meta-charset"><a href="#attr-meta-charset">content</a></code> attribute, and
+ <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
+ string "<code title="">Content-Type</code>", and the element has a
+ <code title="attr-meta-content"><a href="#attr-meta-content">content</a></code> attribute, and
applying the <a href="#algorithm-for-extracting-an-encoding-from-a-content-type">algorithm for extracting an encoding from a
- Content-Type</a> to its value returns a supported encoding
- <var title="">encoding</var>, 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 <var title="">encoding</var>.</p>
+ Content-Type</a> to that attribute's value returns a supported
+ encoding <var title="">encoding</var>, 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 <var title="">encoding</var>.</p>
</dd>
Received on Monday, 12 April 2010 06:47:38 UTC