blob: d13f83408f69d8d51c98b2df51a5fb96bcff1910 [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 Web Inspector won't crash if some console have been logged by the time it's opening.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
console.log('log');
console.info('info');
console.warn('warn');
console.error('error');
`);
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
})();