blob: dbcd427924ab69dcbea9aaee52383e6f73c454a4 [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 overriding window.eval does not break inspector.\n`);
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('console');
await TestRunner.evaluateInPagePromise(`
var foo = 'fooValue';
window.eval = "Non-function";
`);
ConsoleTestRunner.evaluateInConsole('foo', step1);
async function step1() {
await ConsoleTestRunner.dumpConsoleMessages();
TestRunner.completeTest();
}
})();