summaryrefslogtreecommitdiffstats
path: root/devtools/platform/tests/xpcshell/test_nativewrappers.js
blob: a7ea81adaf8302cf1dfacfaff82170e1c148fff6 (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
"use strict";

function run_test() {
  const { addDebuggerToGlobal } = ChromeUtils.importESModule(
    "resource://gre/modules/jsdebugger.sys.mjs"
  );

  Services.prefs.setBoolPref("security.allow_eval_with_system_principal", true);
  registerCleanupFunction(() => {
    Services.prefs.clearUserPref("security.allow_eval_with_system_principal");
  });

  addDebuggerToGlobal(globalThis);
  const g = testGlobal("test1");

  const dbg = new Debugger();
  dbg.addDebuggee(g);
  dbg.onDebuggerStatement = function (frame) {
    const args = frame.arguments;
    try {
      args[0];
      Assert.ok(true);
    } catch (ex) {
      Assert.ok(false);
    }
  };

  g.eval("function stopMe(arg) {debugger;}");

  const g2 = testGlobal("test2");
  g2.g = g;
  g2.eval(
    "(" +
      function createBadEvent() {
        // eslint-disable-next-line mozilla/reject-importGlobalProperties
        Cu.importGlobalProperties(["DOMParser"]);
        const parser = new DOMParser();
        const doc = parser.parseFromString("<foo></foo>", "text/xml");
        g.stopMe(doc.createEvent("MouseEvent"));
      } +
      ")()"
  );

  dbg.removeAllDebuggees();
}