Skip to content

Commit

Permalink
[e] (0) Fix an obvious error with the definition of reversed=''. (cre…
Browse files Browse the repository at this point in the history
…dit: mikesmith)

git-svn-id: http://svn.whatwg.org/webapps@1640 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 19, 2008
1 parent 0328f90 commit b956a01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
6 changes: 2 additions & 4 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -10212,8 +10212,8 @@ a friend lost to the

<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>
Expand Down Expand Up @@ -10252,8 +10252,6 @@ a friend lost to the
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
Expand Down
7 changes: 3 additions & 4 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -8440,8 +8440,9 @@ a friend lost to the

<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
Expand Down Expand Up @@ -8478,8 +8479,6 @@ a friend lost to the
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">

Expand Down

0 comments on commit b956a01

Please sign in to comment.