blob: 5b8e1cd429efd3caf07e20054a06b4f5acc62d2c [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(`Test that console.log can be called without console receiver.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
var log = console.log;
log(1);
var info = console.info;
info(2);
var error = console.error;
error(3);
var warn = console.warn;
warn(4);
`);
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
})();