- From: poot <cvsmail@w3.org>
- Date: Thu, 24 Jul 2008 16:06:36 +0900 (JST)
- To: public-html-diffs@w3.org
note case-sensitivity issues (whatwg r1918)
XML-compatible
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1108.html#xml-compatible
limited to only known values
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1108.html#limited
http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1107&r2=1.1108&f=h
http://html5.org/tools/web-apps-tracker?from=1917&to=1918
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1107
retrieving revision 1.1108
diff -u -d -r1.1107 -r1.1108
--- Overview.html 23 Jul 2008 22:31:10 -0000 1.1107
+++ Overview.html 23 Jul 2008 23:16:45 -0000 1.1108
@@ -2785,7 +2785,8 @@
href="http://www.w3.org/TR/REC-xml/#NT-Name"><code
title="">Name</code></a> production defined in XML, they contain no U+003A
COLON (:) characters, and they do not start with three characters "<code
- title="">xml</code>". <a href="#references">[XML]</a>
+ title="">xml</code>". <a href="#references">[XML]</a></p>
+ <!-- XXX case-insensitive ASCII -->
<p>The term <a href="#html-">HTML documents</a> is sometimes used in
contrast with <a href="#xml-documents">XML documents</a> to specifically
@@ -5336,12 +5337,13 @@
on getting, the DOM attribute must return the conforming value associated
with the state the attribute is in (in its canonical case), or the empty
string if the attribute is in a state that has no associated keyword
- value; and on setting, if the new value case-insensitively matches one of
- the keywords given for that attribute, then the content attribute must be
- set to the conforming value associated with the state that the attribute
- would be in if set to the given new value, otherwise, if the new value is
- the empty string, then the content attribute must be removed, otherwise,
- the setter must raise a <code>SYNTAX_ERR</code> exception.
+ value; and on setting, if the new value case-insensitively <!-- XXX -->
+ matches one of the keywords given for that attribute, then the content
+ attribute must be set to the conforming value associated with the state
+ that the attribute would be in if set to the given new value, otherwise,
+ if the new value is the empty string, then the content attribute must be
+ removed, otherwise, the setter must raise a <code>SYNTAX_ERR</code>
+ exception.
<p>If a reflecting DOM attribute is a <code>DOMString</code> but doesn't
fall into any of the above categories, then the getting and setting must
Received on Thursday, 24 July 2008 07:07:14 UTC