Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /IndexedDB/idbindex-objectStore-SameObject.any.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbindex-objectStore-SameObject.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbindex-objectStore-SameObject.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /IndexedDB/idbindex-objectStore-SameObject.any.worker.html - WPT Dashboard Interop Dashboard
// META: title=IndexedDB: objectStore SameObject
// META: global=window,worker
// META: script=resources/support.js
indexeddb_test(
(t, db) => {
const store = db.createObjectStore('store');
const index = store.createIndex('index', 'keyPath');
assert_equals(
index.objectStore, index.objectStore,
'Attribute should yield the same object each time');
},
(t, db) => {
const tx = db.transaction('store', 'readonly');
const store = tx.objectStore('store');
const index = store.index('index');
assert_equals(
index.objectStore, index.objectStore,
'Attribute should yield the same object each time');
t.done();
},
'IDBIndex.objectStore should return same object each time.');