Mypal/devtools/client/webconsole/test/browser_webconsole_bug_623749_ctrl_a_select_all_winnt.js
2021-02-04 16:48:36 +02:00

32 lines
1.1 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/ */
// Test for https://bugzilla.mozilla.org/show_bug.cgi?id=623749
// Map Control + A to Select All, In the web console input, on Windows
"use strict";
const TEST_URI = "data:text/html;charset=utf-8,Test console for bug 623749";
add_task(function* () {
yield loadTab(TEST_URI);
let hud = yield openConsole();
let jsterm = hud.jsterm;
jsterm.setInputValue("Ignore These Four Words");
let inputNode = jsterm.inputNode;
// Test select all with Control + A.
EventUtils.synthesizeKey("a", { ctrlKey: true });
let inputLength = inputNode.selectionEnd - inputNode.selectionStart;
is(inputLength, jsterm.getInputValue().length, "Select all of input");
// Test do nothing on Control + E.
jsterm.setInputValue("Ignore These Four Words");
inputNode.selectionStart = 0;
EventUtils.synthesizeKey("e", { ctrlKey: true });
is(inputNode.selectionStart, 0, "Control + E does not move to end of input");
});