summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/test_bug863792.html
blob: ccd0fc83c9af407b3ea04595cf4cb3cb8db577e5 (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
<!doctype html>
<html>
<head>
  <title>Test for Bug 863792</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="plugin-utils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<script type="application/javascript">

// A plugin that removes itself from the document and inactivates said document
// inside NPP_New. We should not leak the instance. See also test_bug854082

SimpleTest.waitForExplicitFinish();
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);

var i = document.createElement("iframe");
i.src = "file_bug863792.html";
i.width = 500;
i.height = 500;
document.body.appendChild(i);

i.addEventListener("load", function() {
  SpecialPowers.forceGC();
  SpecialPowers.forceCC();
  SimpleTest.executeSoon(function() {
    SpecialPowers.forceGC();
    SpecialPowers.forceCC();
    SimpleTest.executeSoon(function() {
      ok(true, "Didn't crash");
      SimpleTest.finish();
    });
  });
}, false);
</script>
</body>
</html>