mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
128 lines
3.6 KiB
JavaScript
128 lines
3.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Bug 731394: test the debugger source editor default context menu.
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "browser_dbg_script-switching.html";
|
|
|
|
let gPane = null;
|
|
let gTab = null;
|
|
let gDebuggee = null;
|
|
let gDebugger = null;
|
|
|
|
function test()
|
|
{
|
|
let contextMenu = null;
|
|
let scriptShown = false;
|
|
let framesAdded = false;
|
|
let resumed = false;
|
|
let testStarted = false;
|
|
|
|
debug_tab_pane(TAB_URL, function(aTab, aDebuggee, aPane) {
|
|
gTab = aTab;
|
|
gDebuggee = aDebuggee;
|
|
gPane = aPane;
|
|
gDebugger = gPane.panelWin;
|
|
resumed = true;
|
|
|
|
gDebugger.addEventListener("Debugger:SourceShown", onSourceShown);
|
|
|
|
gDebugger.DebuggerController.activeThread.addOneTimeListener("framesadded",
|
|
onFramesAdded);
|
|
|
|
executeSoon(function() {
|
|
gDebuggee.firstCall();
|
|
});
|
|
});
|
|
|
|
function onFramesAdded(aEvent) {
|
|
framesAdded = true;
|
|
executeSoon(startTest);
|
|
}
|
|
|
|
function onSourceShown(aEvent) {
|
|
scriptShown = aEvent.detail.url.indexOf("-02.js") != -1;
|
|
executeSoon(startTest);
|
|
}
|
|
|
|
function startTest()
|
|
{
|
|
if (scriptShown && framesAdded && resumed && !testStarted) {
|
|
testStarted = true;
|
|
gDebugger.removeEventListener("Debugger:SourceShown", onSourceShown);
|
|
executeSoon(performTest);
|
|
}
|
|
}
|
|
|
|
function performTest()
|
|
{
|
|
let scripts = gDebugger.DebuggerView.Sources;
|
|
let editor = gDebugger.editor;
|
|
|
|
is(gDebugger.DebuggerController.activeThread.state, "paused",
|
|
"Should only be getting stack frames while paused.");
|
|
|
|
is(scripts.itemCount, 2,
|
|
"Found the expected number of scripts.");
|
|
|
|
isnot(editor.getText().indexOf("debugger"), -1,
|
|
"The correct script was loaded initially.");
|
|
|
|
isnot(editor.getText().indexOf("\u263a"), -1,
|
|
"Unicode characters are converted correctly.");
|
|
|
|
contextMenu = gDebugger.document.getElementById("sourceEditorContextMenu");
|
|
ok(contextMenu, "source editor context menupopup");
|
|
ok(editor.readOnly, "editor is read only");
|
|
|
|
editor.focus();
|
|
editor.setSelection(0, 10);
|
|
|
|
contextMenu.addEventListener("popupshown", function onPopupShown() {
|
|
contextMenu.removeEventListener("popupshown", onPopupShown, false);
|
|
executeSoon(testContextMenu);
|
|
}, false);
|
|
contextMenu.openPopup(editor.editorElement, "overlap", 0, 0, true, false);
|
|
}
|
|
|
|
function testContextMenu()
|
|
{
|
|
let document = gDebugger.document;
|
|
|
|
ok(document.getElementById("editMenuCommands"),
|
|
"#editMenuCommands found");
|
|
ok(!document.getElementById("editMenuKeys"),
|
|
"#editMenuKeys not found");
|
|
ok(document.getElementById("sourceEditorCommands"),
|
|
"#sourceEditorCommands found");
|
|
|
|
// Map command ids to their expected disabled state.
|
|
let commands = {"se-cmd-undo": true, "se-cmd-redo": true,
|
|
"se-cmd-cut": true, "se-cmd-paste": true,
|
|
"se-cmd-delete": true, "cmd_findAgain": true,
|
|
"cmd_findPrevious": true, "cmd_find": false,
|
|
"cmd_gotoLine": false, "cmd_copy": false,
|
|
"se-cmd-selectAll": false};
|
|
|
|
for (let id in commands) {
|
|
is(document.getElementById(id).hasAttribute("disabled"), commands[id],
|
|
id + " hasAttribute('disabled') check");
|
|
}
|
|
|
|
executeSoon(function() {
|
|
contextMenu.hidePopup();
|
|
closeDebuggerAndFinish();
|
|
});
|
|
}
|
|
|
|
registerCleanupFunction(function() {
|
|
removeTab(gTab);
|
|
gPane = null;
|
|
gTab = null;
|
|
gDebuggee = null;
|
|
gDebugger = null;
|
|
});
|
|
}
|