[html5] r1665 - /
whatwg at whatwg.org
whatwg at whatwg.org
Thu May 22 04:03:08 PDT 2008
Author: ianh
Date: 2008-05-22 04:03:07 -0700 (Thu, 22 May 2008)
New Revision: 1665
Modified:
index
source
Log:
[ct] (1) Content-Type parsing should stop on a semicolon.
Modified: index
===================================================================
--- index 2008-05-22 10:44:38 UTC (rev 1664)
+++ index 2008-05-22 11:03:07 UTC (rev 1665)
@@ -33754,6 +33754,9 @@
<p>If the next seven characters are not a case-insensitive<!--
XXX ASCII-->
match for 'charset', return nothing.
+ </li>
+ <!-- XXX technically, we should skip to the next MIME parameter,
+ but the question is, do browsers do that? -->
<li>
<p>Skip any U+0009, U+000A, U+000B, U+000C, U+000D, or U+0020 characters
@@ -33792,7 +33795,7 @@
<dd>
<p>Return the string from this character to the first U+0009, U+000A,
- U+000B, U+000C, U+000D, or U+0020 character or the end of <var
+ U+000B, U+000C, U+000D, U+0020, or U+003B character or the end of <var
title="">s</var>, whichever comes first.
</dl>
</ol>
Modified: source
===================================================================
--- source 2008-05-22 10:44:38 UTC (rev 1664)
+++ source 2008-05-22 11:03:07 UTC (rev 1665)
@@ -31563,6 +31563,8 @@
<li><p>If the next seven characters are not a case-insensitive<!--
XXX ASCII--> match for 'charset', return nothing.</p></li>
+ <!-- XXX technically, we should skip to the next MIME parameter,
+ but the question is, do browsers do that? -->
<li><p>Skip any U+0009, U+000A, U+000B, U+000C, U+000D, or U+0020
characters that immediately follow the word 'charset' (there might
@@ -31596,8 +31598,8 @@
<dt>Otherwise</dt>
<dd><p>Return the string from this character to the first U+0009,
- U+000A, U+000B, U+000C, U+000D, or U+0020 character or the end of
- <var title="">s</var>, whichever comes first.</dd>
+ U+000A, U+000B, U+000C, U+000D, U+0020, or U+003B character or
+ the end of <var title="">s</var>, whichever comes first.</dd>
</dl>
More information about the Commit-Watchers
mailing list