summaryrefslogtreecommitdiffstats
path: root/browser/tools/mozscreenshots/mozscreenshots/extension/lib/mozscreenshots-script.js
blob: 808c08c8d321c623febf274d55c7a373ae0546a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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/. */

console.log(document, document.body);
console.assert(false, "Failing mozscreenshots assertion");

console.group("Grouped Message");
console.log("group message 1");
console.groupEnd();

console.count("counter");
console.count("counter");

console.log("first", { a: 1 }, "second", { b: "hello" }, "third", {
  c: new Map(),
});
console.log("first", { a: 1 }, "second", { b: "hello" });
console.log("first", { a: 1 }, "\nsecond", { b: "hello" });
console.log("first", "\nsecond");
console.log("\nfirst", "second");