summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/test_event_propagation.html
blob: 192431c1b86d3ad3f9479ed6efb197e7e24cfb93 (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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>Indexed Database Property Test</title>

  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <script type="text/javascript">
    function runTest() {
      SimpleTest.waitForExplicitFinish();

      function messageListener(event) {
        // eslint-disable-next-line no-eval
        eval(event.data);
      }

      window.addEventListener("message", messageListener);
    }
  </script>

</head>

<body onload="runTest();">
  <iframe src="event_propagation_iframe.html"></iframe>
</body>

</html>