blob: f69f75b11774280372733b24c0559d939e4ecbaa [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 dumps native function without exception.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
ConsoleTestRunner.evaluateInConsole('Math.random', step1);
function step1() {
ConsoleTestRunner.evaluateInConsole('document.appendChild', step2);
}
function step2() {
ConsoleTestRunner.expandConsoleMessages(onExpanded);
}
async function onExpanded() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
})();