chromium/third_party/blink/web_tests/storage/indexeddb/resources/interfaces.js

if (this.importScripts) {
    importScripts('../../../resources/js-test.js');
    importScripts('shared.js');
}

description("Test IndexedDB's interfaces.");

function test()
{
    shouldBeTrue("'IDBCursor' in self");
    shouldBeTrue("'IDBCursorWithValue' in self");
    shouldBeTrue("'IDBDatabase' in self");
    shouldBeTrue("'IDBFactory' in self");
    shouldBeTrue("'IDBIndex' in self");
    shouldBeTrue("'IDBKeyRange' in self");
    shouldBeTrue("'IDBObjectStore' in self");
    shouldBeTrue("'IDBOpenDBRequest' in self");
    shouldBeTrue("'IDBRequest' in self");
    shouldBeTrue("'IDBTransaction' in self");
    shouldBeTrue("'IDBVersionChangeEvent' in self");

    finishJSTest();
}

test();