blob: ae3676708d39d35dea703bb3088e354cf3392acf [file] [log] [blame]
// META: title=IndexedDB: Verify [SameObject] behavior of the global scope's indexedDB attribute
// META: global=window,worker
// Spec:
// "https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb"
'use strict';
test(t => {
assert_equals(
self.indexedDB, self.indexedDB,
'Attribute should yield the same object each time');
}, 'indexedDB is [SameObject]');