mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
94 lines
2.5 KiB
JavaScript
94 lines
2.5 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Test that black boxed frames are compressed into a single frame on the stack
|
|
* view when we are already paused.
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "browser_dbg_blackboxing.html";
|
|
const BLACKBOXME_URL = EXAMPLE_URL + "blackboxing_blackboxme.js"
|
|
|
|
var gPane = null;
|
|
var gTab = null;
|
|
var gDebuggee = null;
|
|
var gDebugger = null;
|
|
|
|
function test()
|
|
{
|
|
let scriptShown = false;
|
|
let framesAdded = false;
|
|
let resumed = false;
|
|
let testStarted = false;
|
|
|
|
debug_tab_pane(TAB_URL, function(aTab, aDebuggee, aPane) {
|
|
resumed = true;
|
|
gTab = aTab;
|
|
gDebuggee = aDebuggee;
|
|
gPane = aPane;
|
|
gDebugger = gPane.panelWin;
|
|
|
|
once(gDebugger, "Debugger:SourceShown", function () {
|
|
testBlackBoxStack();
|
|
});
|
|
});
|
|
}
|
|
|
|
function testBlackBoxStack() {
|
|
const { activeThread } = gDebugger.DebuggerController;
|
|
activeThread.addOneTimeListener("framesadded", function () {
|
|
const frames = gDebugger.DebuggerView.StackFrames.widget._list;
|
|
|
|
is(frames.querySelectorAll(".dbg-stackframe").length, 6,
|
|
"Should get 6 frames");
|
|
|
|
is(frames.querySelectorAll(".dbg-stackframe-black-boxed").length, 0,
|
|
"And none of them are black boxed");
|
|
|
|
testBlackBoxSource();
|
|
});
|
|
|
|
gDebuggee.runTest();
|
|
}
|
|
|
|
function testBlackBoxSource() {
|
|
const checkbox = getBlackBoxCheckbox(BLACKBOXME_URL);
|
|
ok(checkbox, "Should get the checkbox for black boxing the source");
|
|
|
|
const { activeThread } = gDebugger.DebuggerController;
|
|
activeThread.addOneTimeListener("blackboxchange", function (event, sourceClient) {
|
|
ok(sourceClient.isBlackBoxed, "The source should be black boxed now");
|
|
|
|
const frames = gDebugger.DebuggerView.StackFrames.widget._list;
|
|
is(frames.querySelectorAll(".dbg-stackframe").length, 3,
|
|
"Should only get 3 frames");
|
|
is(frames.querySelectorAll(".dbg-stackframe-black-boxed").length, 1,
|
|
"And one of them is the combined black boxed frames");
|
|
|
|
closeDebuggerAndFinish();
|
|
});
|
|
|
|
checkbox.click();
|
|
}
|
|
|
|
function getBlackBoxCheckbox(url) {
|
|
return gDebugger.document.querySelector(
|
|
".side-menu-widget-item[tooltiptext=\""
|
|
+ url + "\"] .side-menu-widget-item-checkbox");
|
|
}
|
|
|
|
function once(target, event, callback) {
|
|
target.addEventListener(event, function _listener(...args) {
|
|
target.removeEventListener(event, _listener, false);
|
|
callback.apply(null, args);
|
|
}, false);
|
|
}
|
|
|
|
registerCleanupFunction(function() {
|
|
removeTab(gTab);
|
|
gPane = null;
|
|
gTab = null;
|
|
gDebuggee = null;
|
|
gDebugger = null;
|
|
});
|