1
0
Fork 0
firefox/testing/web-platform/tests/IndexedDB/idbindex-objectStore-SameObject.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
847 B
JavaScript

// META: title=IndexedDB: objectStore SameObject
// META: global=window,worker
// META: script=resources/support.js
// Spec: "https://w3c.github.io/IndexedDB/#dom-idbindex-objectstore"
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.');