blob: d88fb58f10bd40bb728ce6e0581250141d16cc38 [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 debugger will copy valid stack trace upon context menu action.\n`);
await TestRunner.loadModule('sources_test_runner');
await TestRunner.showPanel('sources');
await TestRunner.evaluateInPagePromise(`
function testFunction()
{
functionBar();
}
function functionBar()
{
functionBaz();
}
function functionBaz()
{
debugger;
}
`);
SourcesTestRunner.startDebuggerTest(step1);
function step1() {
SourcesTestRunner.runTestFunctionAndWaitUntilPaused();
TestRunner.addSniffer(Sources.CallStackSidebarPane.prototype, '_updatedForTest', step2);
}
function step2() {
InspectorFrontendHost.copyText = text => TestRunner.addResult(TestRunner.clearSpecificInfoFromStackFrames(text));
self.runtime.sharedInstance(Sources.CallStackSidebarPane)._copyStackTrace();
SourcesTestRunner.completeDebuggerTest();
}
})();