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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/script-formatter-breakpoints-2.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/unformatted2.js"></script> 5 <script src="../debugger/resources/unformatted2.js"></script>
6 <script> 6 <script>
7 var test = function() 7 var test = function()
8 { 8 {
9 WebInspector.breakpointManager._storage._breakpoints = {}; 9 Bindings.breakpointManager._storage._breakpoints = {};
10 var panel = WebInspector.panels.sources; 10 var panel = UI.panels.sources;
11 var scriptFormatter; 11 var scriptFormatter;
12 var formattedSourceFrame; 12 var formattedSourceFrame;
13 13
14 InspectorTest.runDebuggerTestSuite([ 14 InspectorTest.runDebuggerTestSuite([
15 function testSetup(next) 15 function testSetup(next)
16 { 16 {
17 InspectorTest.scriptFormatter().then(function(sf) { 17 InspectorTest.scriptFormatter().then(function(sf) {
18 scriptFormatter = sf; 18 scriptFormatter = sf;
19 next(); 19 next();
20 }); 20 });
21 }, 21 },
22 22
23 function testBreakpointsSetAndRemoveInFormattedSource(next) 23 function testBreakpointsSetAndRemoveInFormattedSource(next)
24 { 24 {
25 InspectorTest.showScriptSource("unformatted2.js", didShowScriptSourc e); 25 InspectorTest.showScriptSource("unformatted2.js", didShowScriptSourc e);
26 26
27 function didShowScriptSource(frame) 27 function didShowScriptSource(frame)
28 { 28 {
29 InspectorTest.addSniffer(WebInspector.ScriptFormatterEditorActio n.prototype, "_updateButton", uiSourceCodeScriptFormatted); 29 InspectorTest.addSniffer(Sources.ScriptFormatterEditorAction.pro totype, "_updateButton", uiSourceCodeScriptFormatted);
30 scriptFormatter._toggleFormatScriptSource(); 30 scriptFormatter._toggleFormatScriptSource();
31 } 31 }
32 32
33 function uiSourceCodeScriptFormatted() 33 function uiSourceCodeScriptFormatted()
34 { 34 {
35 formattedSourceFrame = panel.visibleView; 35 formattedSourceFrame = panel.visibleView;
36 InspectorTest.setBreakpoint(formattedSourceFrame, 3, "", true); 36 InspectorTest.setBreakpoint(formattedSourceFrame, 3, "", true);
37 InspectorTest.waitUntilPaused(pausedInF2); 37 InspectorTest.waitUntilPaused(pausedInF2);
38 InspectorTest.evaluateInPageWithTimeout("f2()"); 38 InspectorTest.evaluateInPageWithTimeout("f2()");
39 } 39 }
(...skipping 10 matching lines...) Expand all
50 ]); 50 ]);
51 51
52 } 52 }
53 </script> 53 </script>
54 </head> 54 </head>
55 <body onload="runTest()"> 55 <body onload="runTest()">
56 <p>Tests the script formatting is working fine with breakpoints. 56 <p>Tests the script formatting is working fine with breakpoints.
57 </p> 57 </p>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698