2016-10-02 21:22:49 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2016-10-03 23:32:52 +00:00
|
|
|
Protocol.Runtime.enable();
|
2016-10-02 21:22:49 +00:00
|
|
|
|
|
|
|
addConsoleMessagePromise("console.log(239)")
|
2016-10-03 23:32:52 +00:00
|
|
|
.then(message => InspectorTest.logMessage(message))
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => addConsoleMessagePromise("var l = console.log;\n l(239)"))
|
2016-10-03 23:32:52 +00:00
|
|
|
.then(message => InspectorTest.logMessage(message))
|
2016-10-02 21:22:49 +00:00
|
|
|
.then(() => InspectorTest.completeTest());
|
|
|
|
|
|
|
|
function addConsoleMessagePromise(expression)
|
|
|
|
{
|
2016-10-03 23:32:52 +00:00
|
|
|
var wait = Protocol.Runtime.onceConsoleAPICalled();
|
|
|
|
Protocol.Runtime.evaluate({ expression: expression });
|
|
|
|
return wait;
|
2016-10-02 21:22:49 +00:00
|
|
|
}
|