[html5] r1640 - /

whatwg at whatwg.org whatwg at whatwg.org
Mon May 19 16:51:34 PDT 2008


Author: ianh
Date: 2008-05-19 16:51:33 -0700 (Mon, 19 May 2008)
New Revision: 1640

Modified:
   index
   source
Log:
[e] (0) Fix an obvious error with the definition of reversed=''. (credit: mikesmith)

Modified: index
===================================================================
--- index	2008-05-19 23:40:12 UTC (rev 1639)
+++ index	2008-05-19 23:51:33 UTC (rev 1640)
@@ -10212,8 +10212,8 @@
 
   <p>The <dfn id=reversed title=attr-ol-reversed><code>reversed</code></dfn>
    attribute is a <a href="#boolean0">boolean attribute</a>. If present, it
-   indicates that the list is an ascending list. If the attribute is present,
-   the list is a descending list.
+   indicates that the list is an descending list (..., 3, 2, 1). If the
+   attribute is omitted, the list is an ascending list (1, 2, 3, ...).
 
   <p>The <dfn id=start0 title=attr-ol-start><code>start</code></dfn>
    attribute, if present, must be a <a href="#valid0">valid integer</a>
@@ -10252,8 +10252,6 @@
    attribute must <a href="#reflect">reflect</a> the value of the <code
    title=attr-ol-start><a href="#start0">start</a></code> content attribute.</p>
   <!-- XXX resuming numbering of lists from previous lists? -->
-  <!-- XXX counting up and down? -->
-  <!-- XXX reverse-counted lists? -->
 
   <div class=example>
    <p>The following markup shows a list where the order matters, and where

Modified: source
===================================================================
--- source	2008-05-19 23:40:12 UTC (rev 1639)
+++ source	2008-05-19 23:51:33 UTC (rev 1640)
@@ -8440,8 +8440,9 @@
 
   <p>The <dfn title="attr-ol-reversed"><code>reversed</code></dfn>
   attribute is a <span>boolean attribute</span>. If present, it
-  indicates that the list is an ascending list. If the attribute is
-  present, the list is a descending list.</p>
+  indicates that the list is an descending list (..., 3, 2, 1). If the
+  attribute is omitted, the list is an ascending list (1, 2, 3,
+  ...).</p>
 
   <p>The <dfn title="attr-ol-start"><code>start</code></dfn>
   attribute, if present, must be a <span>valid integer</span> giving
@@ -8478,8 +8479,6 @@
   title="attr-ol-start">start</code> content attribute.</p>
 
   <!-- XXX resuming numbering of lists from previous lists? -->
-  <!-- XXX counting up and down? -->
-  <!-- XXX reverse-counted lists? -->
 
   <div class="example">
 




More information about the Commit-Watchers mailing list