1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 13:58:49 +00:00
Files
UXP/devtools/client/webconsole/test/browser_webconsole_console_trace_duplicates.js
T
Moonchild 8c395520d9 Issue #1656 - Part 1: Nuke most vim config lines in the tree.
Since these are just interpreted comments, there's 0 impact on actual code.
This removes all lines that match /* vim: set(.*)tw=80: */ with S&R -- there are
a few others scattered around which will be removed manually in a second part.
2020-09-25 22:04:12 +08:00

50 lines
1.5 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/ */
"use strict";
function test() {
const TEST_URI = "http://example.com/browser/devtools/client/webconsole/" +
"test/test-bug_939783_console_trace_duplicates.html";
Task.spawn(runner).then(finishTest);
function* runner() {
const {tab} = yield loadTab("data:text/html;charset=utf8,<p>hello");
const hud = yield openConsole(tab);
BrowserTestUtils.loadURI(gBrowser.selectedBrowser, TEST_URI);
// NB: Now that stack frames include a column number multiple invocations
// on the same line are considered unique. ie:
// |foo(); foo();|
// will generate two distinct trace entries.
yield waitForMessages({
webconsole: hud,
messages: [{
name: "console.trace output for foo1()",
text: "foo1",
consoleTrace: {
file: "test-bug_939783_console_trace_duplicates.html",
fn: "foo3",
},
}, {
name: "console.trace output for foo1()",
text: "foo1",
consoleTrace: {
file: "test-bug_939783_console_trace_duplicates.html",
fn: "foo3",
},
}, {
name: "console.trace output for foo1b()",
text: "foo1b",
consoleTrace: {
file: "test-bug_939783_console_trace_duplicates.html",
fn: "foo3",
},
}],
});
}
}