summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/test_event_listener_leaks.html
blob: ebe5c202dddc766f900931cce2900f443bb08001 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1450358 - Test IDB event listener leak conditions</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/dom/events/test/event_leak_utils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script class="testbody" type="text/javascript">
// Manipulate IDB objects in the frame's context.
// Its important here that we create a listener callback from
// the DOM objects back to the frame's global in order to
// exercise the leak condition.
let count = 0;
async function useIDB(contentWindow) {
  count += 1;
  let db = await new Promise(resolve => {
    let r = contentWindow.indexedDB.open("idb-leak-test-" + count, 1.0);
    r.onupgradeneeded = evt => {
      evt.target.result.createObjectStore("looped");
    };
    r.onsuccess = evt => {
      resolve(evt.target.result);
    };
  });

  let tx = db.transaction("looped", "readwrite");
  let store = tx.objectStore("looped");

  function spin() {
    contentWindow.spinCount += 1;
    store.get(0).onsuccess = spin;
  }

  store.put(0, "purgatory").onsuccess = () => {
    contentWindow.putCount += 1;
    spin();
  };
}

async function runTest() {
  try {
    await checkForEventListenerLeaks("IDB", useIDB);
  } catch (e) {
    ok(false, e);
  } finally {
    SimpleTest.finish();
  }
}

SimpleTest.waitForExplicitFinish();
addEventListener("load", runTest, { once: true });
</script>
</pre>
</body>
</html>