summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-setBreakpoint-before-enabling.html
blob: 24827692df6b3d0e803ed5365dc3d5ea92260082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html>
<head>
<script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
<script>

function test()
{
    InspectorTest.sendCommand("Debugger.setBreakpointByUrl", { url: "http://example.com", lineNumber: 10  }, didSetBreakpointByUrlBeforeEnable);

    function didSetBreakpointByUrlBeforeEnable(message)
    {
        InspectorTest.log("setBreakpointByUrl error: " + JSON.stringify(message.error, null, 2));
        InspectorTest.sendCommand("Debugger.setBreakpoint", {}, didSetBreakpointBeforeEnable);
    }

    function didSetBreakpointBeforeEnable(message)
    {
        InspectorTest.log("setBreakpoint error: " + JSON.stringify(message.error, null, 2));
        InspectorTest.completeTest();
    }
}
</script>
</head>
<body onLoad="runTest();">
</body>
</html>