https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4d811782addaeae38d6d6d1c180d0a447dd821f9 authored by Darren Shen on 13 April 2018, 06:23:04 UTC
[css-typed-om] Support remaining misc properties.
Tip revision: 4d81178
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