- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 30 Sep 2010 23:16:37 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv32740
Modified Files:
common-microsyntaxes.html editing.html fetching-resources.html
forms.html index.html links.html spec.html tabular-data.html
the-button-element.html the-iframe-element.html
Log Message:
Better define how sets of unique space-separated tokens are handled in terms of case-sensitivity. (whatwg r5571)
[updated by splitter]
Index: tabular-data.html
===================================================================
RCS file: /sources/public/html5/spec/tabular-data.html,v
retrieving revision 1.998
retrieving revision 1.999
diff -u -d -r1.998 -r1.999
--- tabular-data.html 29 Sep 2010 19:16:54 -0000 1.998
+++ tabular-data.html 30 Sep 2010 23:16:35 -0000 1.999
@@ -1466,10 +1466,11 @@
model --><hr><p>The <code><a href="#the-td-element">td</a></code> and <code><a href="#the-th-element">th</a></code> element may have a <dfn id="attr-tdth-headers" title="attr-tdth-headers"><code>headers</code></dfn> content
attribute specified. The <code title="attr-tdth-headers"><a href="#attr-tdth-headers">headers</a></code> attribute, if specified,
must contain a string consisting of an <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">unordered set of unique
- space-separated tokens</a>, each of which must have the value of
- an <a href="elements.html#concept-id" title="concept-id">ID</a> of a <code><a href="#the-th-element">th</a></code> element taking part in the same <a href="#concept-table" title="concept-table">table</a> as the <code><a href="#the-td-element">td</a></code> or
- <code><a href="#the-th-element">th</a></code> element<span class="impl"> (as defined by the
- <a href="#table-model">table model</a>)</span>.</p><p>A <code><a href="#the-th-element">th</a></code> element with <a href="elements.html#concept-id" title="concept-id">ID</a> <var title="">id</var> is said
+ space-separated tokens</a> that are <a href="infrastructure.html#case-sensitive">case-sensitive</a>,
+ each of which must have the value of an <a href="elements.html#concept-id" title="concept-id">ID</a> of a <code><a href="#the-th-element">th</a></code> element taking
+ part in the same <a href="#concept-table" title="concept-table">table</a> as the
+ <code><a href="#the-td-element">td</a></code> or <code><a href="#the-th-element">th</a></code> element<span class="impl"> (as
+ defined by the <a href="#table-model">table model</a>)</span>.</p><p>A <code><a href="#the-th-element">th</a></code> element with <a href="elements.html#concept-id" title="concept-id">ID</a> <var title="">id</var> is said
to be <i>directly targeted</i> by all <code><a href="#the-td-element">td</a></code> and
<code><a href="#the-th-element">th</a></code> elements in the same <a href="#concept-table" title="concept-table">table</a> that have <code title="attr-tdth-headers"><a href="#attr-tdth-headers">headers</a></code> attributes whose values
include as one of their tokens the <a href="elements.html#concept-id" title="concept-id">ID</a> <var title="">id</var>. A
Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-iframe-element.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- the-iframe-element.html 29 Sep 2010 19:16:54 -0000 1.19
+++ the-iframe-element.html 30 Sep 2010 23:16:35 -0000 1.20
@@ -615,8 +615,8 @@
</div><hr><p>The <dfn id="attr-iframe-sandbox" title="attr-iframe-sandbox"><code>sandbox</code></dfn>
attribute, when specified, enables a set of extra restrictions on
any content hosted by the <code><a href="#the-iframe-element">iframe</a></code>. Its value must be an
- <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">unordered set of unique space-separated tokens</a>. The
- allowed values are <code title="attr-iframe-sandbox-allow-same-origin"><a href="#attr-iframe-sandbox-allow-same-origin">allow-same-origin</a></code>,
+ <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">unordered set of unique space-separated tokens</a> that are
+ <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a>. The allowed values are <code title="attr-iframe-sandbox-allow-same-origin"><a href="#attr-iframe-sandbox-allow-same-origin">allow-same-origin</a></code>,
<code title="attr-iframe-sandbox-allow-top-navigation"><a href="#attr-iframe-sandbox-allow-top-navigation">allow-top-navigation</a></code>,
<code title="attr-iframe-sandbox-allow-forms"><a href="#attr-iframe-sandbox-allow-forms">allow-forms</a></code>,
and <code title="attr-iframe-sandbox-allow-scripts"><a href="#attr-iframe-sandbox-allow-scripts">allow-scripts</a></code>. When
Index: fetching-resources.html
===================================================================
RCS file: /sources/public/html5/spec/fetching-resources.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- fetching-resources.html 30 Sep 2010 04:16:34 -0000 1.19
+++ fetching-resources.html 30 Sep 2010 23:16:34 -0000 1.20
@@ -613,7 +613,7 @@
</div>
- <h4 id="content-type-sniffing"><span class="secno">2.7.3 </span>Determining the type of a resource</h4>
+ <h4 id="content-type-sniffing"><span class="secno">2.7.3 </span>Determining the type of a resource</h4><p class="XXX annotation"><span><a href="http://www.w3.org/html/wg/tracker/issues/125">ISSUE-125</a> (charset-vs-quotes) and <a href="http://www.w3.org/html/wg/tracker/issues/126">ISSUE-126</a> (charset-vs-backslashes) block progress to Last Call</span></p>
<p>The <dfn id="content-type" title="Content-Type">Content-Type metadata</dfn> of a
resource must be obtained and interpreted in a manner consistent
Index: forms.html
===================================================================
RCS file: /sources/public/html5/spec/forms.html,v
retrieving revision 1.1005
retrieving revision 1.1006
diff -u -d -r1.1005 -r1.1006
--- forms.html 29 Sep 2010 19:16:49 -0000 1.1005
+++ forms.html 30 Sep 2010 23:16:34 -0000 1.1006
@@ -743,10 +743,11 @@
can be submitted to a server for processing.</p><p>The <dfn id="attr-form-accept-charset" title="attr-form-accept-charset"><code>accept-charset</code></dfn>
attribute gives the character encodings that are to be used for the
submission. If specified, the value must be an <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens">ordered set of
- unique space-separated tokens</a>, and each token must be an
- <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> match for the <a href="infrastructure.html#preferred-mime-name">preferred
- MIME name</a> of an <a href="infrastructure.html#ascii-compatible-character-encoding">ASCII-compatible character
- encoding</a>. <a href="references.html#refsIANACHARSET">[IANACHARSET]</a></p><p>The <dfn id="attr-form-name" title="attr-form-name"><code>name</code></dfn> attribute
+ unique space-separated tokens</a> that are <a href="infrastructure.html#ascii-case-insensitive">ASCII
+ case-insensitive</a>, and each token must be an <a href="infrastructure.html#ascii-case-insensitive">ASCII
+ case-insensitive</a> match for the <a href="infrastructure.html#preferred-mime-name">preferred MIME
+ name</a> of an <a href="infrastructure.html#ascii-compatible-character-encoding">ASCII-compatible character encoding</a>.
+ <a href="references.html#refsIANACHARSET">[IANACHARSET]</a></p><p>The <dfn id="attr-form-name" title="attr-form-name"><code>name</code></dfn> attribute
represents the <code><a href="#the-form-element">form</a></code>'s name within the <code title="dom-document-forms"><a href="dom.html#dom-document-forms">forms</a></code> collection. The value must
not be the empty string, and the value must be unique amongst the
<code><a href="#the-form-element">form</a></code> elements in the <code title="dom-document-forms"><a href="dom.html#dom-document-forms">forms</a></code> collection that it is in, if
Index: editing.html
===================================================================
RCS file: /sources/public/html5/spec/editing.html,v
retrieving revision 1.1005
retrieving revision 1.1006
diff -u -d -r1.1005 -r1.1006
--- editing.html 29 Sep 2010 19:16:48 -0000 1.1005
+++ editing.html 30 Sep 2010 23:16:34 -0000 1.1006
@@ -824,8 +824,8 @@
<code title="attr-accesskey"><a href="#the-accesskey-attribute">accesskey</a></code> attribute's value is
used by the user agent as a guide for creating a keyboard shortcut
that activates or focuses the element.</p><p>If specified, the value must be an <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens">ordered set of unique
- space-separated tokens</a>, each of which must be exactly one
- Unicode code point in length.</p><div class="impl">
+ space-separated tokens</a> that are <a href="infrastructure.html#case-sensitive">case-sensitive</a>,
+ each of which must be exactly one Unicode code point in length.</p><div class="impl">
<p>An element's <dfn id="assigned-access-key">assigned access key</dfn> is a key combination
derived from the element's <code title="attr-accesskey"><a href="#the-accesskey-attribute">accesskey</a></code> content attribute as
Index: index.html
===================================================================
RCS file: /sources/public/html5/spec/index.html,v
retrieving revision 1.1012
retrieving revision 1.1013
diff -u -d -r1.1012 -r1.1013
--- index.html 30 Sep 2010 08:16:41 -0000 1.1012
+++ index.html 30 Sep 2010 23:16:35 -0000 1.1013
@@ -1765,11 +1765,11 @@
</td></tr><tr><th> <code title="">accept-charset</code>
</th><td> <code title="attr-form-accept-charset"><a href="forms.html#attr-form-accept-charset">form</a></code>
</td><td> Character encodings to use for <a href="association-of-controls-and-forms.html#form-submission">form submission</a>
- </td><td> <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens">Ordered set of unique space-separated tokens</a> consisting of <a href="infrastructure.html#preferred-mime-name" title="preferred MIME name">preferred MIME names</a> of <a href="infrastructure.html#ascii-compatible-character-encoding" title="ASCII-compatible character encoding">ASCII-compatible character encodings</a>*
+ </td><td> <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens">Ordered set of unique space-separated tokens</a>, <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a>, consisting of <a href="infrastructure.html#preferred-mime-name" title="preferred MIME name">preferred MIME names</a> of <a href="infrastructure.html#ascii-compatible-character-encoding" title="ASCII-compatible character encoding">ASCII-compatible character encodings</a>*
</td></tr><tr><th> <code title="">accesskey</code>
</th><td> <a href="editing.html#the-accesskey-attribute" title="attr-accesskey">HTML elements</a>
</td><td> Keyboard shortcut to activate or focus element
- </td><td> <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens">Ordered set of unique space-separated tokens</a> consisting of one Unicode code point in length
+ </td><td> <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens">Ordered set of unique space-separated tokens</a>, <a href="infrastructure.html#case-sensitive">case-sensitive</a>, consisting of one Unicode code point in length
</td></tr><tr><th> <code title="">action</code>
</th><td> <code title="attr-fs-action"><a href="association-of-controls-and-forms.html#attr-fs-action">form</a></code>
</td><td> <a href="urls.html#url">URL</a> to use for <a href="association-of-controls-and-forms.html#form-submission">form submission</a>
@@ -1829,7 +1829,7 @@
</td></tr><tr><th> <code title="">class</code>
</th><td> <a href="elements.html#classes" title="attr-class">HTML elements</a>
</td><td> Classes to which the element belongs
- </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a>
+ </td><td> <a href="common-microsyntaxes.html#set-of-space-separated-tokens">Set of space-separated tokens</a>
</td></tr><tr><th> <code title="">cols</code>
</th><td> <code title="attr-textarea-cols"><a href="the-button-element.html#attr-textarea-cols">textarea</a></code>
</td><td> Maximum number of characters per line
@@ -1908,7 +1908,7 @@
</td></tr><tr><th> <code title="">for</code>
</th><td> <code title="attr-output-for"><a href="the-button-element.html#attr-output-for">output</a></code>
</td><td> Specifies controls from which the output was calculated
- </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a> consisting of IDs*
+ </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a>, <a href="infrastructure.html#case-sensitive">case-sensitive</a>, consisting of IDs*
</td></tr><tr><th> <code title="">form</code>
</th><td> <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form">button</a></code>;
<code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form">fieldset</a></code>;
@@ -1952,7 +1952,7 @@
</th><td> <code title="attr-tdth-headers"><a href="tabular-data.html#attr-tdth-headers">td</a></code>;
<code title="attr-tdth-headers"><a href="tabular-data.html#attr-tdth-headers">th</a></code>
</td><td> The header cells for this cell
- </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a> consisting of IDs*
+ </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a>, <a href="infrastructure.html#case-sensitive">case-sensitive</a>, consisting of IDs*
</td></tr><tr><th> <code title="">height</code>
</th><td> <code title="attr-canvas-height"><a href="the-canvas-element.html#attr-canvas-height">canvas</a></code>;
<code title="attr-dim-height"><a href="the-map-element.html#attr-dim-height">embed</a></code>;
@@ -2181,7 +2181,7 @@
</td></tr><tr><th> <code title="">sandbox</code>
</th><td> <code title="attr-iframe-sandbox"><a href="the-iframe-element.html#attr-iframe-sandbox">iframe</a></code>
</td><td> Security rules for nested content
- </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a> consisting of
+ </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a>, <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a>, consisting of
"<code title="attr-iframe-sandbox-allow-same-origin"><a href="the-iframe-element.html#attr-iframe-sandbox-allow-same-origin">allow-same-origin</a></code>",
"<code title="attr-iframe-sandbox-allow-forms"><a href="the-iframe-element.html#attr-iframe-sandbox-allow-forms">allow-forms</a></code>", and
"<code title="attr-iframe-sandbox-allow-scripts"><a href="the-iframe-element.html#attr-iframe-sandbox-allow-scripts">allow-scripts</a></code>"
@@ -2223,7 +2223,7 @@
</td></tr><tr><th> <code title="">sizes</code>
</th><td> <code title="attr-link-sizes"><a href="links.html#attr-link-sizes">link</a></code>
</td><td> Sizes of the icons (for <code title="attr-link-rel"><a href="semantics.html#attr-link-rel">rel</a></code>="<code title="rel-icon"><a href="links.html#rel-icon">icon</a></code>")
- </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a> consisting of sizes*
+ </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a>, <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a>, consisting of sizes*
</td></tr><tr><th> <code title="">span</code>
</th><td> <code title="attr-col-span"><a href="tabular-data.html#attr-col-span">col</a></code>;
<code title="attr-colgroup-span"><a href="tabular-data.html#attr-colgroup-span">colgroup</a></code>
Index: the-button-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-button-element.html,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- the-button-element.html 29 Sep 2010 19:16:54 -0000 1.27
+++ the-button-element.html 30 Sep 2010 23:16:35 -0000 1.28
@@ -1786,8 +1786,9 @@
that went into the calculation or that otherwise influenced the
calculation. The <code title="attr-output-for"><a href="#attr-output-for">for</a></code> attribute,
if specified, must contain a string consisting of an <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">unordered
- set of unique space-separated tokens</a>, each of which must have
- the value of an <a href="elements.html#concept-id" title="concept-id">ID</a> of an element in the same
+ set of unique space-separated tokens</a> that are
+ <a href="infrastructure.html#case-sensitive">case-sensitive</a>, each of which must have the value of an
+ <a href="elements.html#concept-id" title="concept-id">ID</a> of an element in the same
<code><a href="infrastructure.html#document">Document</a></code>.</p><p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form">form</a></code> attribute is used to
explicitly associate the <code><a href="#the-output-element">output</a></code> element with its
<a href="association-of-controls-and-forms.html#form-owner">form owner</a>. The <code title="attr-fe-name"><a href="association-of-controls-and-forms.html#attr-fe-name">name</a></code>
Index: links.html
===================================================================
RCS file: /sources/public/html5/spec/links.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- links.html 29 Sep 2010 19:16:51 -0000 1.29
+++ links.html 30 Sep 2010 23:16:35 -0000 1.30
@@ -816,12 +816,14 @@
</div><p>The <dfn id="attr-link-sizes" title="attr-link-sizes"><code>sizes</code></dfn>
attribute gives the sizes of icons for visual media.</p><p>If specified, the attribute must have a value that is an
- <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">unordered set of unique space-separated tokens</a>. The
- values must all be either <code title="attr-link-sizes-any"><a href="#attr-link-sizes-any">any</a></code> or a value that consists of
- two <a href="common-microsyntaxes.html#valid-non-negative-integer" title="valid non-negative integer">valid non-negative
- integers</a> that do not have a leading U+0030 DIGIT ZERO (0)
- character and that are separated by a single U+0078 LATIN SMALL
- LETTER X character (x).</p><p>The keywords represent icon sizes.</p><div class="impl">
+ <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">unordered set of unique space-separated tokens</a>, which
+ are <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a>. The values must all be
+ either an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> match for the string
+ "<code title="attr-link-sizes-any"><a href="#attr-link-sizes-any">any</a></code>", or a value that
+ consists of two <a href="common-microsyntaxes.html#valid-non-negative-integer" title="valid non-negative integer">valid
+ non-negative integers</a> that do not have a leading U+0030 DIGIT
+ ZERO (0) character and that are separated by a single U+0078 LATIN
+ SMALL LETTER X or U+0058 LATIN CAPITAL LETTER X character.</p><p>The keywords represent icon sizes.</p><div class="impl">
<p>To parse and process the attribute's value, the user agent must
first <a href="common-microsyntaxes.html#split-a-string-on-spaces" title="split a string on spaces">split the attribute's
@@ -836,14 +838,15 @@
what they represent:</p>
<ul><li><p>If the keyword doesn't contain exactly one U+0078 LATIN
- SMALL LETTER X character (x), then this keyword doesn't represent
- anything. Abort these steps for that keyword.</p></li>
+ SMALL LETTER X or U+0058 LATIN CAPITAL LETTER X character, then
+ this keyword doesn't represent anything. Abort these steps for that
+ keyword.</p></li>
<li><p>Let <var title="">width string</var> be the string before
- the "<code title="">x</code>".</p></li>
+ the "<code title="">x</code>" or "<code title="">X</code>".</p></li>
- <li><p>Let <var title="">height string</var> be the string after the
- "<code title="">x</code>".</p></li>
+ <li><p>Let <var title="">height string</var> be the string after
+ the "<code title="">x</code>" or "<code title="">X</code>".</p></li>
<li><p>If either <var title="">width string</var> or <var title="">height string</var> start with a U+0030 DIGIT ZERO (0)
character or contain any characters other than characters in the
@@ -1125,7 +1128,7 @@
must also treat the keyword "<code title="">previous</code>" like
the <code title="rel-prev"><a href="#link-type-prev">prev</a></code> keyword.</p>
- </div><h5 id="other-link-types"><span class="secno">4.12.4.19 </span>Other link types</h5><p><span title="concept-rel-extensions">Extensions to the predefined
+ </div><h5 id="other-link-types"><span class="secno">4.12.4.19 </span>Other link types</h5><p class="XXX annotation"><span><a href="http://www.w3.org/html/wg/tracker/issues/127">ISSUE-127</a> (link-type-flags) blocks progress to Last Call</span></p><p><span title="concept-rel-extensions">Extensions to the predefined
set of link types</span> may be registered in the <a href="http://wiki.whatwg.org/wiki/RelExtensions">WHATWG Wiki
RelExtensions page</a>. <a href="references.html#refsWHATWGWIKI">[WHATWGWIKI]</a></p><p>Anyone is free to edit the WHATWG Wiki RelExtensions page at any
time to add a type. Extension types must be specified with the
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1263
retrieving revision 1.1264
diff -u -d -r1.1263 -r1.1264
--- spec.html 30 Sep 2010 09:16:33 -0000 1.1263
+++ spec.html 30 Sep 2010 23:16:35 -0000 1.1264
@@ -341,7 +341,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.4452.
+This is revision 1.4453.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Index: common-microsyntaxes.html
===================================================================
RCS file: /sources/public/html5/spec/common-microsyntaxes.html,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- common-microsyntaxes.html 29 Sep 2010 19:16:48 -0000 1.20
+++ common-microsyntaxes.html 30 Sep 2010 23:16:34 -0000 1.21
@@ -2103,20 +2103,21 @@
<li><p>Return <var title="">result</var>.</p>
</li></ol></div><hr><h4 id="space-separated-tokens"><span class="secno">2.5.7 </span>Space-separated tokens</h4><p>A <dfn id="set-of-space-separated-tokens">set of space-separated tokens</dfn> is a string containing
- zero or more words separated by one or more <a href="#space-character" title="space
- character">space characters</a>, where words consist of any
- string of one or more characters, none of which are <a href="#space-character" title="space character">space characters</a>.</p><p>A string containing a <a href="#set-of-space-separated-tokens">set of space-separated tokens</a>
+ zero or more words (known as tokens) separated by one or more <a href="#space-character" title="space character">space characters</a>, where words consist
+ of any string of one or more characters, none of which are <a href="#space-character" title="space character">space characters</a>.</p><p>A string containing a <a href="#set-of-space-separated-tokens">set of space-separated tokens</a>
may have leading or trailing <a href="#space-character" title="space character">space
characters</a>.</p><p>An <dfn id="unordered-set-of-unique-space-separated-tokens">unordered set of unique space-separated tokens</dfn> is a
- <a href="#set-of-space-separated-tokens">set of space-separated tokens</a> where none of the words
+ <a href="#set-of-space-separated-tokens">set of space-separated tokens</a> where none of the tokens
are duplicated.</p><p>An <dfn id="ordered-set-of-unique-space-separated-tokens">ordered set of unique space-separated tokens</dfn> is a
- <a href="#set-of-space-separated-tokens">set of space-separated tokens</a> where none of the words
+ <a href="#set-of-space-separated-tokens">set of space-separated tokens</a> where none of the tokens
are duplicated but where the order of the tokens is meaningful.</p><p><a href="#set-of-space-separated-tokens" title="set of space-separated tokens">Sets of
space-separated tokens</a> sometimes have a defined set of
allowed values. When a set of allowed values is defined, the tokens
must all be from that list of allowed values; other values are
non-conforming. If no such set of allowed values is provided, then
- all values are conforming.</p><div class="impl">
+ all values are conforming.</p><p class="note">How tokens in a <a href="#set-of-space-separated-tokens">set of space-separated
+ tokens</a> are to be compared (e.g. case-sensitively or not) is
+ defined on a per-set basis.</p><div class="impl">
<p>When a user agent has to <dfn id="split-a-string-on-spaces">split a string on spaces</dfn>, it
must use the following algorithm:</p>
@@ -2183,7 +2184,8 @@
characters</a> that are not <a href="#space-character" title="space character">space
characters</a>, and let that be <var title="">s</var>.</p></li>
- <li><p>If <var title="">s</var> is exactly equal to <var title="">token</var>, then:</p>
+ <li><p>If <var title="">s</var> is exactly equal to <var title="">token</var> (this is a <a href="infrastructure.html#case-sensitive">case-sensitive</a>
+ comparison), then:</p>
<ol><li><p><a href="#skip-whitespace">Skip whitespace</a> (in <var title="">input</var>).</p></li>
Received on Thursday, 30 September 2010 23:16:41 UTC