blob: 480746f5d00a89e328c62ae0656ea72754c21990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
/* import-globals-from xpcshell-head-parent-process.js */
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();
};
}
|