Skip to content

Commit

Permalink
Correct 'source' used for IDBIndex operations
Browse files Browse the repository at this point in the history
  • Loading branch information
inexorabletash committed Jan 13, 2015
1 parent 0f168cc commit 23fcfbb
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2632,7 +2632,7 @@ <h4>Index</h4>
<p>
This method runs the <a>steps for asynchronously executing
a request</a> and returns the <a>IDBRequest</a> created by these steps. The steps are run with this
<a>IDBObjectStore</a> as <var>source</var> and the <a>steps for iterating a cursor</a> as <var>operation</var>,
<a>IDBIndex</a> as <var>source</var> and the <a>steps for iterating a cursor</a> as <var>operation</var>,
using the created cursor as <var>cursor</var> and with undefined as <var>key</var>
</p>
<dl class="parameters">
Expand All @@ -2657,7 +2657,7 @@ <h4>Index</h4>
<p>
Otherwise, this method runs the <a>steps for asynchronously executing a request</a>
and returns the <a>IDBRequest</a> created by these steps. The steps are run with this
<a>IDBObjectStore</a> as <var>source</var> and the <a>steps for retrieving a referenced value from an
<a>IDBIndex</a> as <var>source</var> and the <a>steps for retrieving a referenced value from an
index</a> as <var>operation</var>, using this <a>IDBIndex</a> as <var>index</var> and the
<var>key</var> parameter as <var>key</var>.
</p>
Expand Down Expand Up @@ -2691,7 +2691,7 @@ <h4>Index</h4>
<p>
Otherwise, this method runs the <a>steps for asynchronously executing a request</a>
and returns the <a>IDBRequest</a> created by these steps. The steps are run with this
<a>IDBObjectStore</a> as <var>source</var> and the <a>steps for retrieving a value from an
<a>IDBIndex</a> as <var>source</var> and the <a>steps for retrieving a value from an
index</a> as <var>operation</var>, using this <a>IDBIndex</a> as <var>index</var> and the
<var>key</var> parameter as <var>key</var>.
</p>
Expand Down Expand Up @@ -4302,7 +4302,13 @@ <h2>Revision History</h2>
</p>
<ul>
<li>Address comparison of empty arrays (<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=27712">bug #27712</a>)</li>
<li>Add <code>openKeyCursor</code> method to <a><code>IDBObjectStore</code></a>.
<li>Add <code>openKeyCursor</code> method to <a><code>IDBObjectStore</code></a>.</li>
<li>Correct <var>source</var> used for <code>get()</code>,
<code>getKey()</code> and <code>openKeyCursor()</code> operations of
<a><code>IDBIndex</code></a> objects.
</li>


</ul>
</section>
<section class="section appendix" id="acknowledgements">
Expand Down

0 comments on commit 23fcfbb

Please sign in to comment.