Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /IndexedDB/idbtransaction-db-SameObject.any.html - WPT Dashboard Interop Dashboard
 - /IndexedDB/idbtransaction-db-SameObject.any.serviceworker.html - WPT Dashboard Interop Dashboard
 - /IndexedDB/idbtransaction-db-SameObject.any.sharedworker.html - WPT Dashboard Interop Dashboard
 - /IndexedDB/idbtransaction-db-SameObject.any.worker.html - WPT Dashboard Interop Dashboard
 
 
// META: title=IndexedDB: Verify [SameObject] behavior of IDBTransaction's db attribute
// META: global=window,worker
// META: script=resources/support.js
'use strict';
indexeddb_test(
    (t, db, tx) => {
      const store = db.createObjectStore('store');
      assert_equals(
          tx.db, tx.db, 'Attribute should yield the same object each time');
    },
    (t, db) => {
      const tx = db.transaction('store', 'readonly');
      assert_equals(
          tx.db, tx.db, 'Attribute should yield the same object each time');
      t.done();
    },
    'IDBTransaction.db [SameObject]');