Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / storage / indexeddb / resources / interfaces.js
blobc1f9d7aee0fa772796abc41d93eb056251ebfff0
1 if (this.importScripts) {
2     importScripts('../../../resources/js-test.js');
3     importScripts('shared.js');
6 description("Test IndexedDB's interfaces.");
8 function test()
10     shouldBeTrue("'IDBCursor' in self");
11     shouldBeTrue("'IDBCursorWithValue' in self");
12     shouldBeTrue("'IDBDatabase' in self");
13     shouldBeTrue("'IDBFactory' in self");
14     shouldBeTrue("'IDBIndex' in self");
15     shouldBeTrue("'IDBKeyRange' in self");
16     shouldBeTrue("'IDBObjectStore' in self");
17     shouldBeTrue("'IDBOpenDBRequest' in self");
18     shouldBeTrue("'IDBRequest' in self");
19     shouldBeTrue("'IDBTransaction' in self");
20     shouldBeTrue("'IDBVersionChangeEvent' in self");
22     finishJSTest();
25 test();