| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> | 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> |
| 5 <script src="../debugger/resources/framework.js"></script> | 5 <script src="../debugger/resources/framework.js"></script> |
| 6 <script> | 6 <script> |
| 7 | 7 |
| 8 var counter = 0; | 8 var counter = 0; |
| 9 | 9 |
| 10 function testFunction() | 10 function testFunction() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 | 22 |
| 23 function stop() | 23 function stop() |
| 24 { | 24 { |
| 25 debugger; | 25 debugger; |
| 26 } | 26 } |
| 27 | 27 |
| 28 function test() | 28 function test() |
| 29 { | 29 { |
| 30 var frameworkRegexString = "/framework\\.js$"; | 30 var frameworkRegexString = "/framework\\.js$"; |
| 31 WebInspector.settingForTest("skipStackFramesPattern").set(frameworkRegexStri
ng); | 31 Common.settingForTest("skipStackFramesPattern").set(frameworkRegexString); |
| 32 | 32 |
| 33 InspectorTest.startDebuggerTest(step1, true); | 33 InspectorTest.startDebuggerTest(step1, true); |
| 34 | 34 |
| 35 function step1() | 35 function step1() |
| 36 { | 36 { |
| 37 InspectorTest.runTestFunctionAndWaitUntilPaused(step2); | 37 InspectorTest.runTestFunctionAndWaitUntilPaused(step2); |
| 38 } | 38 } |
| 39 | 39 |
| 40 function step2() | 40 function step2() |
| 41 { | 41 { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 57 </script> | 57 </script> |
| 58 </head> | 58 </head> |
| 59 | 59 |
| 60 <body onload="runTest()"> | 60 <body onload="runTest()"> |
| 61 <input type='button' onclick='testFunction()' value='Test'/> | 61 <input type='button' onclick='testFunction()' value='Test'/> |
| 62 <p> | 62 <p> |
| 63 Tests that stepping into blackboxed framework will not pause on setTimeout() ins
ide the framework. | 63 Tests that stepping into blackboxed framework will not pause on setTimeout() ins
ide the framework. |
| 64 </p> | 64 </p> |
| 65 </body> | 65 </body> |
| 66 </html> | 66 </html> |
| OLD | NEW |