blob: 05b8d0ee0140dc3318817a6be1355766c38ca733 [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(`Verify that control characters are substituted with printable characters.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
ConsoleTestRunner.evaluateInConsole('var\u001d i = 0;', onEvaluated);
async function onEvaluated() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
})();