| OLD | NEW |
| 1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 print('Checks console methods'); | 5 InspectorTest.log('Checks console methods'); |
| 6 | 6 |
| 7 InspectorTest.addScript(` | 7 InspectorTest.addScript(` |
| 8 function testFunction() { | 8 function testFunction() { |
| 9 console.debug('debug'); | 9 console.debug('debug'); |
| 10 console.error('error'); | 10 console.error('error'); |
| 11 console.info('info'); | 11 console.info('info'); |
| 12 console.log('log'); | 12 console.log('log'); |
| 13 console.warn('warn'); | 13 console.warn('warn'); |
| 14 console.dir('dir'); | 14 console.dir('dir'); |
| 15 console.dirxml('dirxml'); | 15 console.dirxml('dirxml'); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 27 } | 27 } |
| 28 foo(); | 28 foo(); |
| 29 foo(); | 29 foo(); |
| 30 } | 30 } |
| 31 //# sourceURL=test.js`, 7, 26); | 31 //# sourceURL=test.js`, 7, 26); |
| 32 | 32 |
| 33 Protocol.Runtime.onConsoleAPICalled(InspectorTest.logMessage); | 33 Protocol.Runtime.onConsoleAPICalled(InspectorTest.logMessage); |
| 34 Protocol.Runtime.enable(); | 34 Protocol.Runtime.enable(); |
| 35 Protocol.Runtime.evaluate({ expression: 'testFunction()' }) | 35 Protocol.Runtime.evaluate({ expression: 'testFunction()' }) |
| 36 .then(InspectorTest.completeTest); | 36 .then(InspectorTest.completeTest); |
| OLD | NEW |