mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-29 14:23:25 +00:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
/* Bug 714942 */
|
|
|
|
function test()
|
|
{
|
|
waitForExplicitFinish();
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gBrowser.selectedBrowser.addEventListener("load", function browserLoad() {
|
|
gBrowser.selectedBrowser.removeEventListener("load", browserLoad, true);
|
|
openScratchpad(runTests);
|
|
}, true);
|
|
|
|
content.location = "data:text/html,<p>test the 'Jump to line' feature in Scratchpad";
|
|
}
|
|
|
|
function runTests(aWindow, aScratchpad)
|
|
{
|
|
let editor = aScratchpad.editor;
|
|
let text = "foobar bug650345\nBug650345 bazbaz\nfoobar omg\ntest";
|
|
editor.setText(text);
|
|
editor.setCursor({ line: 0, ch: 0 });
|
|
|
|
let oldPrompt = editor.openDialog;
|
|
let desiredValue;
|
|
|
|
editor.openDialog = function (text, cb) {
|
|
cb(desiredValue);
|
|
};
|
|
|
|
desiredValue = 3;
|
|
EventUtils.synthesizeKey("J", {accelKey: true}, aWindow);
|
|
is(editor.getCursor().line, 2, "line is correct");
|
|
|
|
desiredValue = 2;
|
|
EventUtils.synthesizeKey("J", {accelKey: true}, aWindow);
|
|
is(editor.getCursor().line, 1, "line is correct (again)");
|
|
|
|
editor.openDialog = oldPrompt;
|
|
finish();
|
|
}
|