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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const TEST_URI =
"http://example.com/browser/devtools/client/webconsole/test/browser/test-console.html";
add_task(async function() {
const hud = await openNewTabAndConsole(TEST_URI);
info("Test that console.log with a string argument does not include quotes");
let receivedMessages = waitForMessages({
hud,
messages: [{ text: "stringLog" }],
});
await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function() {
content.wrappedJSObject.stringLog();
});
await receivedMessages;
ok(true, "console.log result does not have quotes");
info(
"Test that console.log with empty string argument render <empty string>"
);
receivedMessages = waitForMessages({
hud,
messages: [{ text: "hello <empty string>" }],
});
await ContentTask.spawn(gBrowser.selectedBrowser, {}, function() {
const name = "";
content.wrappedJSObject.console.log("hello", name);
});
await receivedMessages;
ok(true, "console.log empty string argument renders as expected");
info(
"Test that log with object containing an empty string property renders as expected"
);
receivedMessages = waitForMessages({
hud,
messages: [{ text: `Object { a: "" }` }],
});
await ContentTask.spawn(gBrowser.selectedBrowser, {}, function() {
content.wrappedJSObject.console.log({ a: "" });
});
await receivedMessages;
ok(true, "object with empty string property renders as expected");
info("evaluating a string constant");
let msg = await executeAndWaitForMessage(
hud,
'"string\\nconstant"',
"constant",
".result"
);
let body = msg.node.querySelector(".message-body");
// On the other hand, a string constant result should be quoted, but
// newlines should be let through.
ok(
body.textContent.includes('"string\nconstant"'),
`found expected text - "${body.textContent}"`
);
info("evaluating an empty string constant");
msg = await executeAndWaitForMessage(hud, '""', '""', ".result");
body = msg.node.querySelector(".message-body");
ok(body.textContent.includes('""'), `found expected text`);
});
|