| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 let {session, contextGroup, Protocol} = InspectorTest.start('Tests that setting
breakpoint before enabling debugger produces an error'); |
| 6 |
| 5 Protocol.Debugger.setBreakpointByUrl({ url: "http://example.com", lineNumber: 10
}).then(didSetBreakpointByUrlBeforeEnable); | 7 Protocol.Debugger.setBreakpointByUrl({ url: "http://example.com", lineNumber: 10
}).then(didSetBreakpointByUrlBeforeEnable); |
| 6 | 8 |
| 7 function didSetBreakpointByUrlBeforeEnable(message) | 9 function didSetBreakpointByUrlBeforeEnable(message) |
| 8 { | 10 { |
| 9 InspectorTest.log("setBreakpointByUrl error: " + JSON.stringify(message.error,
null, 2)); | 11 InspectorTest.log("setBreakpointByUrl error: " + JSON.stringify(message.error,
null, 2)); |
| 10 Protocol.Debugger.setBreakpoint().then(didSetBreakpointBeforeEnable); | 12 Protocol.Debugger.setBreakpoint().then(didSetBreakpointBeforeEnable); |
| 11 } | 13 } |
| 12 | 14 |
| 13 function didSetBreakpointBeforeEnable(message) | 15 function didSetBreakpointBeforeEnable(message) |
| 14 { | 16 { |
| 15 InspectorTest.log("setBreakpoint error: " + JSON.stringify(message.error, null
, 2)); | 17 InspectorTest.log("setBreakpoint error: " + JSON.stringify(message.error, null
, 2)); |
| 16 InspectorTest.completeTest(); | 18 InspectorTest.completeTest(); |
| 17 } | 19 } |
| OLD | NEW |