1
0
Fork 0
firefox/testing/web-platform/tests/IndexedDB/globalscope-indexedDB-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

13 lines
390 B
JavaScript

// 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]');