3 <script type=
"text/javascript" src=
"../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
8 InspectorTest
.sendCommand("Debugger.setBreakpointByUrl", { url
: "http://example.com", lineNumber
: 10 }, didSetBreakpointByUrlBeforeEnable
);
10 function didSetBreakpointByUrlBeforeEnable(message
)
12 InspectorTest
.log("setBreakpointByUrl error: " + JSON
.stringify(message
.error
, null, 2));
13 InspectorTest
.sendCommand("Debugger.setBreakpoint", {}, didSetBreakpointBeforeEnable
);
16 function didSetBreakpointBeforeEnable(message
)
18 InspectorTest
.log("setBreakpoint error: " + JSON
.stringify(message
.error
, null, 2));
19 InspectorTest
.completeTest();
24 <body onLoad=
"runTest();">