summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_plugin_freezing.html
blob: 99174aa9bb71391641b106cd7891e67a691cceae (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
62
63
64
65
66
67
68
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for plugin freezing and thawing</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<div id="content" style="display: none">
</div>
<embed id='e1' type='application/x-test'></embed>
<script>
var e1 = document.getElementById('e1');
var w;

var testIndex = 0;
var tests;

window.addEventListener("unload", function() {
  e1.stopWatchingInstanceCount();
});

function nextTest() {
  if (testIndex == tests.length) {
    if (w) {
      w.close();
    }
    SimpleTest.waitForFocus(function() {
      SimpleTest.finish();
    });
    return;
  }

  var test = tests[testIndex];
  ++testIndex;
  test();
}

function waitForInstanceCount(n) {
  if (e1.getInstanceCount() == n) {
    ok(true, "reached instance count " + n);
    nextTest();
    return;
  }
  setTimeout(function() { waitForInstanceCount(n); }, 0);
}

tests = [
  function() { waitForInstanceCount(1); },
  function() { w.location.href = "about:blank";
               waitForInstanceCount(0); },
];

try {
  e1.startWatchingInstanceCount();
  var w = window.open("data:text/html,<embed id='e2' type='application/x-test'></embed>");
  SimpleTest.waitForFocus(nextTest, w);
  SimpleTest.waitForExplicitFinish();
} catch (err) {
  todo(false, "Instances already being watched?");
}

</script>
<pre id="test">
</pre>
</body>
</html>