blob: 094510271c4d591e2acc7c1179a514fa68755635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
function runTest() {
const name = "Splendid Test";
let keyRange = IDBKeyRange.only(42);
ok(keyRange, "Got keyRange");
let request = indexedDB.open(name, 1);
request.onerror = function(event) {
ok(false, "indexedDB error, '" + event.target.error.name + "'");
finishTest();
}
request.onsuccess = function(event) {
let db = event.target.result;
ok(db, "Got database");
finishTest();
}
}
|