Bug 827007: Implement Stop for UserMediaStreams; add NotifyRemoved for MediaStream...
[gecko.git] / js / jsd / test / test-bug617870-callhooks.js
blobbfe97a31a5cc4ad007444f56cc6cb92301eb54be
1 g = { 'global noneval': 1 };
2 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
4 eval("g['global eval'] = 1");
6 // Function to step through and set breakpoints on
7 function f1() {
8   g['function noneval'] = 1;
9   eval("g['function eval'] = 1");
11   x = 1;
12   for (y = 0; y < 10; y++) {
13     x++;
14   }
15   for (y = 0; y < 3; y++) {
16     x++;
17   }
18   z = 3;
21 var f2 = new Function("g['function noneval'] = 2; eval(\"g['function eval'] = 2\")");
23 function testJSD(jsd) {
24     netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
25     ok(jsd.isOn, "JSD needs to be running for this test.");
27     var numBreakpoints = 0;
29     f1();
30     f2();
31     jsd.topLevelHook = null;
32     jsd.functionHook = null;
33     dump("numGlobalNonevals="+numGlobalNonevals+"\n");
34     dump("numFunctionNonevals="+numFunctionNonevals+"\n");
35     dump("numGlobalEvals="+numGlobalEvals+"\n");
36     dump("numFunctionEvals="+numFunctionEvals+"\n");
38     ok(numFunctionNonevals == 3, "(fn) Should have hit f1(), testJSD(), and f2(); hit " + hits.fn);
39     ok(numGlobalNonevals == 1, "(gn) Overall script, hit " + hits.gn);
40     ok(numGlobalEvals == 1, "(ge) Eval in global area, hit " + hits.ge);
41     ok(numFunctionEvals == 2, "(fe) Evals within f1() and f2(), hit " + hits.fe);
43     if (!jsdOnAtStart) {
44         // turn JSD off if it wasn't on when this test started
45         jsd.off();
46         ok(!jsd.isOn, "JSD shouldn't be running at the end of this test.");
47     }
49     SimpleTest.finish();
52 testJSD(jsd);