blob: 79566069f650110bc638be9e21858222c3f5026a [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 the Timeline API function call is not recorded for InjectedScript.eval.\n`);
await TestRunner.loadModule('performance_test_runner');
await TestRunner.showPanel('timeline');
await TestRunner.evaluateInPagePromise(`
function performActions()
{
}
`);
UI.panels.timeline._disableCaptureJSProfileSetting.set(true);
await PerformanceTestRunner.performActionsAndPrint('performActions()', 'FunctionCall');
})();