1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
// Test that the keybindings for Picker work alright
const IS_OSX = Services.appinfo.OS === "Darwin";
const TEST_URL = URL_ROOT + "doc_inspector_highlighter_dom.html";
add_task(async function() {
const { inspector, toolbox, testActor } = await openInspectorForURL(TEST_URL);
await startPicker(toolbox);
await hoverElement(inspector, "#another");
info("Testing enter/return key as pick-node command");
await doKeyPick({ key: "VK_RETURN", options: {} });
is(
inspector.selection.nodeFront.id,
"another",
"The #another node was selected. Passed."
);
info("Testing escape key as cancel-picker command");
await startPicker(toolbox);
await hoverElement(inspector, "#ahoy");
await doKeyStop({ key: "VK_ESCAPE", options: {} });
is(
inspector.selection.nodeFront.id,
"another",
"The #another DIV is still selected. Passed."
);
info("Testing Ctrl+Shift+C shortcut as cancel-picker command");
await startPicker(toolbox);
await hoverElement(inspector, "#ahoy");
const shortcutOpts = { key: "VK_C", options: {} };
if (IS_OSX) {
shortcutOpts.options.metaKey = true;
shortcutOpts.options.altKey = true;
} else {
shortcutOpts.options.ctrlKey = true;
shortcutOpts.options.shiftKey = true;
}
await doKeyStop(shortcutOpts);
is(
inspector.selection.nodeFront.id,
"another",
"The #another DIV is still selected. Passed."
);
function doKeyPick(args) {
info("Key pressed. Waiting for element to be picked");
testActor.synthesizeKey(args);
return promise.all([
inspector.selection.once("new-node-front"),
inspector.once("inspector-updated"),
toolbox.nodePicker.once("picker-stopped"),
]);
}
function doKeyStop(args) {
info("Key pressed. Waiting for picker to be canceled");
testActor.synthesizeKey(args);
return toolbox.nodePicker.once("picker-stopped");
}
});
|