summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/third_party_iframe2.html
blob: da60c36bcfe7fca44c2596efd0940ea6ebf79d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>Indexed Database Test</title>

  <script type="text/javascript">
    function report(result) {
      let message = { source: "iframe2" };
      message.result = result;
      window.parent.postMessage(JSON.stringify(message), "*");
    }

    function runIndexedDBTest() {
      try {
        let request = indexedDB.open(window.location.pathname, 1);
        request.onsuccess = function(event) {
          report(!!(event.target.result instanceof IDBDatabase));
        };
      }
      catch (e) {
        report(false);
      }
    }
  </script>

</head>

<body onload="runIndexedDBTest();">
</body>

</html>