3 <script src=
"../../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../../http/tests/inspector/debugger-test.js"></script>
5 <script src=
"../debugger/resources/framework.js"></script>
10 function testFunction()
12 Framework
.scheduleUntilDone(callback
, 0);
30 var frameworkRegexString
= "/framework\\.js$";
31 WebInspector
.settingForTest("skipStackFramesPattern").set(frameworkRegexString
);
33 InspectorTest
.startDebuggerTest(step1
, true);
37 InspectorTest
.runTestFunctionAndWaitUntilPaused(step2
);
46 "StepInto", "Print", // Should NOT stop on setTimeout() inside framework
48 InspectorTest
.waitUntilPausedAndPerformSteppingActions(actions
, step3
);
53 InspectorTest
.completeDebuggerTest();
60 <body onload=
"runTest()">
61 <input type='button' onclick='testFunction()' value='Test'
/>
63 Tests that stepping into blackboxed framework will not pause on setTimeout() inside the framework.