37 lines
824 B
JavaScript
37 lines
824 B
JavaScript
/**
|
|
* 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";
|
|
|
|
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();
|
|
};
|
|
}
|