blob: 4799d283bb1c9d5d9cb252b39fb05fab0d63ef0f [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`Tests that console.trace dumps stack trace with source URLs and line numbers.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
function b()
{
console.trace();
}
function a()
{
b();
}
`);
async function callback() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
TestRunner.evaluateInPage('setTimeout(a, 0)');
ConsoleTestRunner.addConsoleSniffer(callback);
})();