idlharness.any.js (624B)
1 // META: global=window,worker 2 // META: script=/resources/WebIDLParser.js 3 // META: script=/resources/idlharness.js 4 // META: timeout=long 5 'use strict'; 6 7 idl_test( 8 ['IndexedDB'], 9 ['html', 'dom'], 10 idl_array => { 11 idl_array.add_objects({ 12 IDBCursor: [], 13 IDBCursorWithValue: [], 14 IDBDatabase: [], 15 IDBFactory: [self.indexedDB], 16 IDBIndex: [], 17 IDBKeyRange: [IDBKeyRange.only(0)], 18 IDBObjectStore: [], 19 IDBOpenDBRequest: [], 20 IDBRequest: [], 21 IDBTransaction: [], 22 IDBVersionChangeEvent: ['new IDBVersionChangeEvent("type")'], 23 DOMStringList: [], 24 }); 25 } 26 );