Automatic update from web-platform-tests Mark IndexedDB/idlharness.any.js as timeout=long On Chromium CI, this occasionally dips above 6s and times out. Looks like its just a bit slow, not hanging entirely, so giving it more time to finish seems ok. Bug: 1047068 Change-Id: Ifd986d3f7324e20e954f0e5da9e7a993aba6b2e4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2115553 Reviewed-by: Stephen McGruer <smcgruer@chromium.org> Reviewed-by: Robert Ma <robertma@chromium.org> Commit-Queue: Stephen McGruer <smcgruer@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Cr-Commit-Position: refs/heads/master@{#752442} -- wpt-commits: 252fb8ed1f2934649ca55c1930eb537496cd97bb wpt-pr: 22394
26 lines
610 B
JavaScript
26 lines
610 B
JavaScript
// META: global=window,worker
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
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: [],
|
|
});
|
|
}
|
|
);
|