Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

// META: title=IndexedDB: Verify [SameObject] behavior of the global scope's indexedDB attribute
// META: global=window,worker
// Spec:
'use strict';
test(t => {
assert_equals(
self.indexedDB, self.indexedDB,
'Attribute should yield the same object each time');
}, 'indexedDB is [SameObject]');