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
70
71
72
73
74
75
76
77
78
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test for Web Console commands registration.
add_task(async function () {
const tab = await addTab("data:text/html,<div id=quack></div>");
const commands = await CommandsFactory.forTab(tab);
await commands.targetCommand.startListening();
// Fetch WebConsoleCommandsManager so that it is available for next Content Tasks
await ContentTask.spawn(gBrowser.selectedBrowser, null, function () {
const { require } = ChromeUtils.importESModule(
"resource://devtools/shared/loader/Loader.sys.mjs"
);
const {
WebConsoleCommandsManager,
} = require("resource://devtools/server/actors/webconsole/commands/manager.js");
// Bind the symbol on this in order to make it available for next tasks
this.WebConsoleCommandsManager = WebConsoleCommandsManager;
});
await registerNewCommand(commands);
await registerAccessor(commands);
});
async function evaluateJSAndCheckResult(commands, input, expected) {
const response = await commands.scriptCommand.execute(input);
checkObject(response, expected);
}
async function registerNewCommand(commands) {
await ContentTask.spawn(gBrowser.selectedBrowser, null, function () {
this.WebConsoleCommandsManager.register("setFoo", (owner, value) => {
owner.window.foo = value;
return "ok";
});
});
const command = "setFoo('bar')";
await evaluateJSAndCheckResult(commands, command, {
input: command,
result: "ok",
});
await ContentTask.spawn(gBrowser.selectedBrowser, null, function () {
is(content.top.foo, "bar", "top.foo should equal to 'bar'");
});
}
async function registerAccessor(commands) {
await ContentTask.spawn(gBrowser.selectedBrowser, null, function () {
this.WebConsoleCommandsManager.register("$foo", {
get(owner) {
const foo = owner.window.document.getElementById("quack");
return owner.makeDebuggeeValue(foo);
},
});
});
const command = "$foo.textContent = '>o_/'";
await evaluateJSAndCheckResult(commands, command, {
input: command,
result: ">o_/",
});
await ContentTask.spawn(gBrowser.selectedBrowser, null, function () {
is(
content.document.getElementById("quack").textContent,
">o_/",
'#foo textContent should equal to ">o_/"'
);
});
}
|