trisquel-icecat/icecat/testing/web-platform/tests/IndexedDB/idbobjectstore-transaction-SameObject.any.js
2025-10-06 02:35:48 -06:00

24 lines
796 B
JavaScript

// META: global=window,worker
// META: title=IndexedDB: Verify [SameObject] behavior of IDBObjectStore's transaction attribute
// META: script=resources/support.js
// Spec: https://w3c.github.io/IndexedDB/#dom-idbobjectstore-transaction
'use strict';
indexeddb_test(
(t, db) => {
const store = db.createObjectStore('store');
assert_equals(
store.transaction, store.transaction,
'Attribute should yield the same object each time');
},
(t, db) => {
const tx = db.transaction('store', 'readonly');
const store = tx.objectStore('store');
assert_equals(
store.transaction, store.transaction,
'Attribute should yield the same object each time');
t.done();
},
'IDBObjectStore.transaction [SameObject]');