Skip to content

Commit

Permalink
[e] (0) remove impossible case (thanks to webidl for making this unam…
Browse files Browse the repository at this point in the history
…biguous) (credit: pt)

git-svn-id: http://svn.whatwg.org/webapps@2574 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Dec 24, 2008
1 parent a700c80 commit 96eeab3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions index
Expand Up @@ -38600,9 +38600,10 @@ user reload must be equivalent to .reload()
must not.) <!--The order of keys may differ between instances of the
<code>Storage</code> interface accessing the same list. [removed for
now for clarity, but if people ask, put it back. this is part of the
spec.]--> If <var title="">n</var> is less than zero or greater than
or equal to the number of key/value pairs in the object, then this
method must raise an <code><a href=#index_size_err>INDEX_SIZE_ERR</a></code> exception.</p>
spec.]--> If <var title="">n</var> is <!--less than zero or [can't,
unsigned]--> greater than or equal to the number of key/value pairs
in the object, then this method must raise an
<code><a href=#index_size_err>INDEX_SIZE_ERR</a></code> exception.</p>

<p>The <dfn id=dom-storage-getitem title=dom-Storage-getItem><code>getItem(<var title="">key</var>)</code></dfn> method must return the current
value associated with the given <var title="">key</var>. If the
Expand Down
7 changes: 4 additions & 3 deletions source
Expand Up @@ -43954,9 +43954,10 @@ user reload must be equivalent to .reload()
must not.) <!--The order of keys may differ between instances of the
<code>Storage</code> interface accessing the same list. [removed for
now for clarity, but if people ask, put it back. this is part of the
spec.]--> If <var title="">n</var> is less than zero or greater than
or equal to the number of key/value pairs in the object, then this
method must raise an <code>INDEX_SIZE_ERR</code> exception.</p>
spec.]--> If <var title="">n</var> is <!--less than zero or [can't,
unsigned]--> greater than or equal to the number of key/value pairs
in the object, then this method must raise an
<code>INDEX_SIZE_ERR</code> exception.</p>

<p>The <dfn title="dom-Storage-getItem"><code>getItem(<var
title="">key</var>)</code></dfn> method must return the current
Expand Down

0 comments on commit 96eeab3

Please sign in to comment.