request-event-ordering-large-then-small-values.any.js (677B)
1 // META: title=IndexedDB: request result events are delivered in order 2 // META: global=window,worker 3 // META: script=resources/support-promises.js 4 // META: script=resources/support.js 5 // META: script=resources/request-event-ordering-common.js 6 // META: timeout=long 7 8 // Spec: https://w3c.github.io/IndexedDB/#abort-transaction 9 10 'use strict'; 11 12 eventsTest('large value followed by small values', [ 13 ['get', 1], 14 ['getall', 4], 15 ['open', 2], 16 ['continue-empty', null], 17 ['get', 2], 18 ['get-empty', 5], 19 ['count', 4], 20 ['continue-empty', null], 21 ['open-empty', 5], 22 ['add', 5], 23 ['error', 1], 24 ['continue', 2], 25 ['get-empty', 6], 26 ['put-with-id', 5], 27 ['put', 6], 28 ]);