Revision ec54ac4479d66e039809ac65026a12eb9529d34a authored by Geoffrey Sneddon on 13 March 2018, 15:16:44 UTC, committed by Geoffrey Sneddon on 14 March 2018, 18:08:06 UTC
1 parent 24da741
Raw File
globalscope-indexedDB-SameObject.html
<!doctype html>
<meta charset=utf-8>
<title>IndexedDB: Verify [SameObject] behavior of the global scope's indexedDB attribute</title>
<meta name="help" href="https://w3c.github.io/IndexedDB/#dom-windoworworkerglobalscope-indexeddb">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>

test(t => {
  assert_equals(self.indexedDB, self.indexedDB,
                'Attribute should yield the same object each time');

}, 'indexedDB is [SameObject]');

</script>
back to top