| Index: test/inspector/debugger/framework-break.js
|
| diff --git a/test/inspector/debugger/framework-break.js b/test/inspector/debugger/framework-break.js
|
| index 42cdcf76245ea695bd83bb5a5d8e70b5ddd815ce..1566c264a218f7b1b51073e540ac36886b613485 100644
|
| --- a/test/inspector/debugger/framework-break.js
|
| +++ b/test/inspector/debugger/framework-break.js
|
| @@ -3,7 +3,7 @@
|
| // found in the LICENSE file.
|
| // Flags: --allow-natives-syntax
|
|
|
| -print('Checks that breaks in framework code correctly processed.');
|
| +InspectorTest.log('Checks that breaks in framework code correctly processed.');
|
|
|
| InspectorTest.addScript(`
|
| function frameworkAssert() {
|
| @@ -188,16 +188,16 @@ InspectorTest.runTestSuite([
|
| },
|
|
|
| function testAsyncDOMBreakpoint(next) {
|
| - schedulePauseOnNextStatement('', '');
|
| + utils.schedulePauseOnNextStatement('', '');
|
| InspectorTest.log('> all frames in framework:');
|
| Protocol.Runtime
|
| .evaluate(
|
| {expression: 'asyncDOMBreakpoint()//# sourceURL=framework.js'})
|
| - .then(() => cancelPauseOnNextStatement())
|
| + .then(() => utils.cancelPauseOnNextStatement())
|
| .then(
|
| () => Protocol.Runtime.evaluate(
|
| {expression: '42//# sourceURL=user.js'}))
|
| - .then(() => schedulePauseOnNextStatement('', ''))
|
| + .then(() => utils.schedulePauseOnNextStatement('', ''))
|
| .then(
|
| () => Protocol.Runtime.evaluate(
|
| {expression: 'asyncDOMBreakpoint()//# sourceURL=user.js'}))
|
|
|