Skip to content

Commit

Permalink
[e] (0) Mention that some rules are handled specially.
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9102

git-svn-id: http://svn.whatwg.org/webapps@4879 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 29, 2010
1 parent 1378acf commit ddd0e3f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
13 changes: 9 additions & 4 deletions complete.html
Expand Up @@ -84439,10 +84439,10 @@ <h4 id=punctuation-and-decorations><span class=secno>14.2.6 </span>Punctuation a
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; }
Expand Down Expand Up @@ -84509,6 +84509,11 @@ <h4 id=punctuation-and-decorations><span class=secno>14.2.6 </span>Punctuation a
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>
Expand Down
13 changes: 9 additions & 4 deletions index
Expand Up @@ -77712,10 +77712,10 @@ br[clear=right] { clear: right; }
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; }
Expand Down Expand Up @@ -77782,6 +77782,11 @@ table[border] &gt; tfoot &gt; tr &gt; td, table[border] &gt; tfoot &gt; tr &gt;
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>
Expand Down
14 changes: 10 additions & 4 deletions source
Expand Up @@ -93749,10 +93749,10 @@ br[clear=right] { clear: right; }
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; }
Expand Down Expand Up @@ -93819,6 +93819,12 @@ table[border] > tfoot > tr > td, table[border] > tfoot > tr > th {
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>li</code> elements, user agents are expected
to use the ordinal value of the <code>li</code> element to render
the counter in the list item marker.</p>
Expand Down

0 comments on commit ddd0e3f

Please sign in to comment.