3 <script src=
"../../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../../http/tests/inspector/debugger-test.js"></script>
18 function testFunction()
25 InspectorTest
.startDebuggerTest(step1
);
29 InspectorTest
.runTestFunctionAndWaitUntilPaused(step2
);
33 function step2(callFrames
)
35 InspectorTest
.captureStackTrace(callFrames
);
37 InspectorTest
.addResult("Stepping over...");
38 WebInspector
.panels
.sources
._stepOverButton
.element
.click();
39 InspectorTest
.waitUntilResumed(InspectorTest
.waitUntilPaused
.bind(InspectorTest
, step2
));
41 InspectorTest
.completeDebuggerTest();
49 <body onload=
"runTest()">
51 Tests
"step over" functionality in debugger.