| // META: script=/resources/WebIDLParser.js |
| // META: script=/resources/idlharness.js |
| promise_test(async t => { |
| const [html, dom, indexeddb] = await Promise.all([ |
| '/interfaces/IndexedDB.idl', |
| ].map(url => fetch(url).then(response => response.text()))); |
| const idl_array = new IdlArray(); |
| idl_array.add_untested_idls(html, { only: ['WindowOrWorkerGlobalScope'] }); |
| idl_array.add_untested_idls(dom); |
| idl_array.add_idls(indexeddb); |
| IDBFactory: [self.indexedDB], |
| IDBKeyRange: [IDBKeyRange.only(0)], |
| IDBVersionChangeEvent: [new IDBVersionChangeEvent('')], |