Source code
Revision control
Copy as Markdown
Other Tools
// META: global=window,worker
// META: title=IndexedDB: assure no crash when populating index
// META: script=../resources/support.js
'use_strict';
indexeddb_test(
(t, db, tx) => {
const store = db.createObjectStore('store', { keyPath: 'a.b', autoIncrement: true });
store.put({});
const index = store.createIndex('index', 'keypath');
t.done();
},
/*open_func=*/null,
"Assure no crash when populating index",
);