blob: 898f78128c79ec951296cbbead58bc78e315aaac (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
/* import-globals-from xpcshell-head-parent-process.js */
function ok(cond, msg) {
dump("ok(" + cond + ', "' + msg + '")');
Assert.ok(!!cond, Components.stack.caller);
}
function finishTest() {
executeSoon(function () {
do_test_finished();
});
}
function run_test() {
const name = "Splendid Test";
Cu.importGlobalProperties(["indexedDB"]);
do_test_pending();
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();
};
}
|