mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 21:58:37 +00:00
a680bdc637
Since these are just interpreted comments, there's 0 impact on actual code. This removes all lines that match /* vim: set(.*)tw=80: */ with S&R -- there are a few others scattered around which will be removed manually in a second part.
132 lines
4.4 KiB
JavaScript
132 lines
4.4 KiB
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests that the selection is dropped for line and token searches, after
|
|
* pressing backspace enough times.
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "doc_script-switching-01.html";
|
|
|
|
var gTab, gPanel, gDebugger;
|
|
var gEditor, gSources, gSearchBox;
|
|
|
|
function test() {
|
|
let options = {
|
|
source: EXAMPLE_URL + "code_script-switching-01.js",
|
|
line: 1,
|
|
};
|
|
initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => {
|
|
gTab = aTab;
|
|
gPanel = aPanel;
|
|
gDebugger = gPanel.panelWin;
|
|
gEditor = gDebugger.DebuggerView.editor;
|
|
gSources = gDebugger.DebuggerView.Sources;
|
|
gSearchBox = gDebugger.DebuggerView.Filtering._searchbox;
|
|
|
|
testLineSearch();
|
|
testTokenSearch();
|
|
closeDebuggerAndFinish(gPanel);
|
|
});
|
|
}
|
|
|
|
function testLineSearch() {
|
|
setText(gSearchBox, ":42");
|
|
ok(isCaretPos(gPanel, 7),
|
|
"The editor caret position appears to be correct (1.1).");
|
|
ok(isEditorSel(gPanel, [151, 151]),
|
|
"The editor selection appears to be correct (1.1).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (1.1).");
|
|
|
|
backspaceText(gSearchBox, 1);
|
|
ok(isCaretPos(gPanel, 4),
|
|
"The editor caret position appears to be correct (1.2).");
|
|
ok(isEditorSel(gPanel, [110, 110]),
|
|
"The editor selection appears to be correct (1.2).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (1.2).");
|
|
|
|
backspaceText(gSearchBox, 1);
|
|
ok(isCaretPos(gPanel, 4),
|
|
"The editor caret position appears to be correct (1.3).");
|
|
ok(isEditorSel(gPanel, [110, 110]),
|
|
"The editor selection appears to be correct (1.3).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (1.3).");
|
|
|
|
setText(gSearchBox, ":4");
|
|
ok(isCaretPos(gPanel, 4),
|
|
"The editor caret position appears to be correct (1.4).");
|
|
ok(isEditorSel(gPanel, [110, 110]),
|
|
"The editor selection appears to be correct (1.4).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (1.4).");
|
|
|
|
gSearchBox.select();
|
|
backspaceText(gSearchBox, 1);
|
|
ok(isCaretPos(gPanel, 4),
|
|
"The editor caret position appears to be correct (1.5).");
|
|
ok(isEditorSel(gPanel, [110, 110]),
|
|
"The editor selection appears to be correct (1.5).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (1.5).");
|
|
is(gSearchBox.value, "",
|
|
"The searchbox should have been cleared.");
|
|
}
|
|
|
|
function testTokenSearch() {
|
|
setText(gSearchBox, "#();");
|
|
ok(isCaretPos(gPanel, 5, 16),
|
|
"The editor caret position appears to be correct (2.1).");
|
|
ok(isEditorSel(gPanel, [145, 148]),
|
|
"The editor selection appears to be correct (2.1).");
|
|
is(gEditor.getSelection(), "();",
|
|
"The editor selected text appears to be correct (2.1).");
|
|
|
|
backspaceText(gSearchBox, 1);
|
|
ok(isCaretPos(gPanel, 4, 21),
|
|
"The editor caret position appears to be correct (2.2).");
|
|
ok(isEditorSel(gPanel, [128, 130]),
|
|
"The editor selection appears to be correct (2.2).");
|
|
is(gEditor.getSelection(), "()",
|
|
"The editor selected text appears to be correct (2.2).");
|
|
|
|
backspaceText(gSearchBox, 2);
|
|
ok(isCaretPos(gPanel, 4, 20),
|
|
"The editor caret position appears to be correct (2.3).");
|
|
ok(isEditorSel(gPanel, [129, 129]),
|
|
"The editor selection appears to be correct (2.3).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (2.3).");
|
|
|
|
setText(gSearchBox, "#;");
|
|
ok(isCaretPos(gPanel, 5, 16),
|
|
"The editor caret position appears to be correct (2.4).");
|
|
ok(isEditorSel(gPanel, [147, 148]),
|
|
"The editor selection appears to be correct (2.4).");
|
|
is(gEditor.getSelection(), ";",
|
|
"The editor selected text appears to be correct (2.4).");
|
|
|
|
gSearchBox.select();
|
|
backspaceText(gSearchBox, 1);
|
|
ok(isCaretPos(gPanel, 5, 16),
|
|
"The editor caret position appears to be correct (2.5).");
|
|
ok(isEditorSel(gPanel, [148, 148]),
|
|
"The editor selection appears to be correct (2.5).");
|
|
is(gEditor.getSelection(), "",
|
|
"The editor selected text appears to be correct (2.5).");
|
|
is(gSearchBox.value, "",
|
|
"The searchbox should have been cleared.");
|
|
}
|
|
|
|
registerCleanupFunction(function () {
|
|
gTab = null;
|
|
gPanel = null;
|
|
gDebugger = null;
|
|
gEditor = null;
|
|
gSources = null;
|
|
gSearchBox = null;
|
|
});
|