mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
97 lines
2.4 KiB
JavaScript
97 lines
2.4 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Bug 771452: make sure that setting a breakpoint in an inline script doesn't
|
|
// add it twice.
|
|
|
|
const TAB_URL = EXAMPLE_URL + "browser_dbg_breakpoint-new-script.html";
|
|
|
|
var gPane = null;
|
|
var gTab = null;
|
|
var gDebugger = null;
|
|
var gDebuggee = null;
|
|
|
|
function test()
|
|
{
|
|
debug_tab_pane(TAB_URL, function(aTab, aDebuggee, aPane) {
|
|
gTab = aTab;
|
|
gPane = aPane;
|
|
gDebugger = gPane.contentWindow;
|
|
gDebuggee = aDebuggee;
|
|
|
|
testAddBreakpoint();
|
|
});
|
|
}
|
|
|
|
function testAddBreakpoint()
|
|
{
|
|
gDebugger.addEventListener("Debugger:FetchedVariables", function test() {
|
|
gDebugger.removeEventListener("Debugger:FetchedVariables", test, false);
|
|
executeSoon(function() {
|
|
var frames = gDebugger.DebuggerView.StackFrames._frames;
|
|
|
|
is(gDebugger.DebuggerController.activeThread.state, "paused",
|
|
"The debugger statement was reached.");
|
|
|
|
is(frames.querySelectorAll(".dbg-stackframe").length, 1,
|
|
"Should have one frame.");
|
|
|
|
let location = { url: TAB_URL, line: 9 };
|
|
gPane.addBreakpoint(location, function (aResponse, bpClient) {
|
|
testResume();
|
|
});
|
|
});
|
|
}, false);
|
|
|
|
gDebuggee.runDebuggerStatement();
|
|
}
|
|
|
|
function testResume()
|
|
{
|
|
let thread = gDebugger.DebuggerController.activeThread;
|
|
thread.addOneTimeListener("resumed", function() {
|
|
thread.addOneTimeListener("paused", function() {
|
|
executeSoon(testBreakpointHit);
|
|
});
|
|
|
|
EventUtils.sendMouseEvent({ type: "click" },
|
|
content.document.querySelector("button"));
|
|
|
|
});
|
|
|
|
thread.resume();
|
|
}
|
|
|
|
function testBreakpointHit()
|
|
{
|
|
is(gDebugger.DebuggerController.activeThread.state, "paused",
|
|
"The breakpoint was hit.");
|
|
|
|
resumeAndFinish();
|
|
}
|
|
|
|
function resumeAndFinish() {
|
|
let thread = gDebugger.DebuggerController.activeThread;
|
|
thread.addOneTimeListener("paused", function test(aEvent, aPacket) {
|
|
thread.addOneTimeListener("resumed", function() {
|
|
executeSoon(closeDebuggerAndFinish);
|
|
});
|
|
|
|
is(aPacket.why.type, "debuggerStatement", "Execution has advanced to the next line.");
|
|
isnot(aPacket.why.type, "breakpoint", "No ghost breakpoint was hit.");
|
|
thread.resume();
|
|
|
|
});
|
|
|
|
thread.resume();
|
|
}
|
|
|
|
registerCleanupFunction(function() {
|
|
removeTab(gTab);
|
|
gPane = null;
|
|
gTab = null;
|
|
gDebugger = null;
|
|
gDebuggee = null;
|
|
});
|