Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-step-into-skips-setTimeout.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698