blob: 5351ff2f1a9a767faa7454138fcb0db53af81a08 (
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
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
function ok(cond, msg) {
dump("ok(" + cond + ", \"" + msg + "\")");
do_check_true(!!cond, Components.stack.caller);
}
function finishTest()
{
do_execute_soon(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();
}
}
|