mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-01 06:33:22 +00:00
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
|
/* 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";
|
||
|
|
||
|
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);
|
||
|
|
||
|
content.location = 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()",
|
||
|
},
|
||
|
}],
|
||
|
});
|
||
|
}
|
||
|
}
|