- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 29 Mar 2010 04:46:42 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv22495
Modified Files:
Overview.html
Log Message:
Mention that some rules are handled specially. (whatwg r4879)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3905
retrieving revision 1.3906
diff -u -d -r1.3905 -r1.3906
--- Overview.html 29 Mar 2010 04:35:50 -0000 1.3905
+++ Overview.html 29 Mar 2010 04:46:30 -0000 1.3906
@@ -62675,10 +62675,10 @@
br[clear=all], br[clear=both] { clear: both; }
ol[type=1], li[type=1] { list-style-type: decimal; }
-ol[type=a], li[type=a] { list-style-type: lower-alpha; }
-ol[type=A], li[type=A] { list-style-type: upper-alpha; }
-ol[type=i], li[type=i] { list-style-type: lower-roman; }
-ol[type=I], li[type=I] { list-style-type: upper-roman; }
+ol[type=a], li[type=a] { list-style-type: lower-alpha; } /* <a href="#case-sensitive-selector-exception">case-sensitive</a> */
+ol[type=A], li[type=A] { list-style-type: upper-alpha; } /* <a href="#case-sensitive-selector-exception">case-sensitive</a> */
+ol[type=i], li[type=i] { list-style-type: lower-roman; } /* <a href="#case-sensitive-selector-exception">case-sensitive</a> */
+ol[type=I], li[type=I] { list-style-type: upper-roman; } /* <a href="#case-sensitive-selector-exception">case-sensitive</a> */
ul[type=disc], li[type=disc] { list-style-type: disc; }
ul[type=circle], li[type=circle] { list-style-type: circle; }
ul[type=square], li[type=square] { list-style-type: square; }
@@ -62745,6 +62745,11 @@
border-width: 1px;
}</pre>
+ <p id="case-sensitive-selector-exception">For the purpose of the
+ four rules marked "case-sensitive" above, user agents are expected
+ to use case-sensitive matching of attribute values rather than
+ case-insensitive matching as is normally required for the <code title="attr-olul-type">type</code> attribute.</p>
+
<p>When rendering <code><a href="#the-li-element">li</a></code> elements, user agents are expected
to use the ordinal value of the <code><a href="#the-li-element">li</a></code> element to render
the counter in the list item marker.</p>
Received on Monday, 29 March 2010 04:46:45 UTC