blob: edef76945150dbcf74047cbbd337cfe8d5695586 [file] [log] [blame]
if (this.importScripts) {
importScripts('../../../resources/js-test.js');
importScripts('shared.js');
}
description("Check that IDBFactory is available through the prefixed or unprefixed entry point.");
function test()
{
shouldBeEqualToString("String(self.indexedDB)", "[object IDBFactory]");
shouldBeNonNull("IDBCursor");
shouldBeNonNull("IDBDatabase");
shouldBeNonNull("IDBFactory");
shouldBeNonNull("IDBIndex");
shouldBeNonNull("IDBKeyRange");
shouldBeNonNull("IDBObjectStore");
shouldBeNonNull("IDBRequest");
shouldBeNonNull("IDBTransaction");
finishJSTest();
}
test();