blob: b2e6be7faa59d3c2d51d09d9946a7368c5a34f36 [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 logging dumps properly styled messages.\n');
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
(function onload()
{
console.log("%cBlue!.", "color: blue;");
console.log("%cBlue! %cRed!", "color: blue;", "color: red;");
console.log("%cwww.google.com", "color: blue");
})();
`);
ConsoleTestRunner.expandConsoleMessages(onExpanded);
function onExpanded() {
ConsoleTestRunner.dumpConsoleMessagesWithStyles();
TestRunner.completeTest();
}
})();