mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<title>IDBObjectStore.delete() - removes all of the records in the range</title>
|
||||
<link rel="author" title="Microsoft" href="http://www.microsoft.com">
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=support.js></script>
|
||||
<script>
|
||||
var db
|
||||
var open_rq = createdb(async_test())
|
||||
|
||||
open_rq.onupgradeneeded = function(e) {
|
||||
db = e.target.result
|
||||
var os = db.createObjectStore("store")
|
||||
|
||||
for(var i = 0; i < 10; i++)
|
||||
os.add("data" + i, i)
|
||||
}
|
||||
|
||||
open_rq.onsuccess = function (e) {
|
||||
var os = db.transaction("store", "readwrite")
|
||||
.objectStore("store")
|
||||
|
||||
os.delete( IDBKeyRange.bound(3, 6) )
|
||||
os.count().onsuccess = this.step_func(function(e)
|
||||
{
|
||||
assert_equals(e.target.result, 6, "Count after deleting 3-6 from 10");
|
||||
this.done();
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<div id=log></div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue