66 lines
2.0 KiB
JavaScript
66 lines
2.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Check a frame actor's parent bindings.
|
|
*/
|
|
|
|
var gDebuggee;
|
|
var gClient;
|
|
var gThreadClient;
|
|
|
|
function run_test() {
|
|
initTestDebuggerServer();
|
|
gDebuggee = addTestGlobal("test-stack");
|
|
gClient = new DebuggerClient(DebuggerServer.connectPipe());
|
|
gClient.connect().then(function () {
|
|
attachTestTabAndResume(gClient, "test-stack",
|
|
function (response, tabClient, threadClient) {
|
|
gThreadClient = threadClient;
|
|
test_pause_frame();
|
|
});
|
|
});
|
|
do_test_pending();
|
|
}
|
|
|
|
function test_pause_frame() {
|
|
gThreadClient.addOneTimeListener("paused", function (event, packet) {
|
|
let parentEnv = packet.frame.environment.parent;
|
|
let bindings = parentEnv.bindings;
|
|
let args = bindings.arguments;
|
|
let vars = bindings.variables;
|
|
do_check_neq(parentEnv, undefined);
|
|
do_check_eq(args.length, 0);
|
|
do_check_eq(vars.stopMe.value.type, "object");
|
|
do_check_eq(vars.stopMe.value.class, "Function");
|
|
do_check_true(!!vars.stopMe.value.actor);
|
|
|
|
// Skip the global lexical scope.
|
|
parentEnv = parentEnv.parent.parent;
|
|
do_check_neq(parentEnv, undefined);
|
|
let objClient = gThreadClient.pauseGrip(parentEnv.object);
|
|
objClient.getPrototypeAndProperties(function (response) {
|
|
do_check_eq(response.ownProperties.Object.value.type, "object");
|
|
do_check_eq(response.ownProperties.Object.value.class, "Function");
|
|
do_check_true(!!response.ownProperties.Object.value.actor);
|
|
|
|
gThreadClient.resume(function () {
|
|
finishClient(gClient);
|
|
});
|
|
});
|
|
});
|
|
|
|
/* eslint-disable */
|
|
gDebuggee.eval("(" + function () {
|
|
function stopMe(number, bool, string, null_, undef, object) {
|
|
var a = 1;
|
|
var b = true;
|
|
var c = { a: "a" };
|
|
debugger;
|
|
}
|
|
stopMe(42, true, "nasu", null, undefined, { foo: "bar" });
|
|
} + ")()");
|
|
}
|