mirror of
https://github.com/servo/servo.git
synced 2025-10-04 10:39:16 +01:00
25 lines
614 B
JavaScript
25 lines
614 B
JavaScript
// META: global=window,worker
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
idl_test(
|
|
['IndexedDB'],
|
|
['html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
IDBCursor: [],
|
|
IDBCursorWithValue: [],
|
|
IDBDatabase: [],
|
|
IDBFactory: [self.indexedDB],
|
|
IDBIndex: [],
|
|
IDBKeyRange: [IDBKeyRange.only(0)],
|
|
IDBObjectStore: [],
|
|
IDBOpenDBRequest: [],
|
|
IDBRequest: [],
|
|
IDBTransaction: [],
|
|
IDBVersionChangeEvent: ['new IDBVersionChangeEvent("type")'],
|
|
DOMStringList: [],
|
|
});
|
|
},
|
|
'IndexedDB interfaces'
|
|
);
|