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

Side by Side Diff: LayoutTests/inspector/debugger/breakpoint-manager-listeners-count.html

Issue 23484056: [DevTools] Renaming Scripts panel to Sources panel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modified missed files Created 7 years, 3 months 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="resources/script1.js"></script> 5 <script src="resources/script1.js"></script>
6 <script src="resources/script2.js"></script> 6 <script src="resources/script2.js"></script>
7 <script> 7 <script>
8 function test() 8 function test()
9 { 9 {
10 InspectorTest.runDebuggerTestSuite([ 10 InspectorTest.runDebuggerTestSuite([
11 function testSourceFramesCount(next) 11 function testSourceFramesCount(next)
12 { 12 {
13 var panel = WebInspector.panels.scripts; 13 var panel = WebInspector.panels.sources;
14 var sourceFrameCount = 0; 14 var sourceFrameCount = 0;
15 15
16 InspectorTest.showScriptSource("script1.js", didShowScriptSources); 16 InspectorTest.showScriptSource("script1.js", didShowScriptSources);
17 17
18 function didShowScriptSources() 18 function didShowScriptSources()
19 { 19 {
20 InspectorTest.reloadPage(didReload); 20 InspectorTest.reloadPage(didReload);
21 } 21 }
22 22
23 function didReload() 23 function didReload()
(...skipping 24 matching lines...) Expand all
48 } 48 }
49 } 49 }
50 ]); 50 ]);
51 }; 51 };
52 </script> 52 </script>
53 </head> 53 </head>
54 <body onload="runTest()"> 54 <body onload="runTest()">
55 <p>Tests that scripts panel does not create too many source frames.</p> 55 <p>Tests that scripts panel does not create too many source frames.</p>
56 </body> 56 </body>
57 </html> 57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698