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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-frame.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/console-test.js"></script> 4 <script src="../../../http/tests/inspector/console-test.js"></script>
5 <script src="../../../http/tests/inspector/debugger-test.js"></script> 5 <script src="../../../http/tests/inspector/debugger-test.js"></script>
6 <script src="../../../http/tests/inspector/network-test.js"></script> 6 <script src="../../../http/tests/inspector/network-test.js"></script>
7 <script src="../../../http/tests/inspector/resources-test.js"></script> 7 <script src="../../../http/tests/inspector/resources-test.js"></script>
8 <script> 8 <script>
9 function addErrorToConsole() 9 function addErrorToConsole()
10 { 10 {
11 console.error("test error message"); 11 console.error("test error message");
12 } 12 }
13 13
14 function methodForBreakpoint() 14 function methodForBreakpoint()
15 { 15 {
16 alert("Hello world"); 16 alert("Hello world");
17 } 17 }
18 18
19 function test() 19 function test()
20 { 20 {
21 WebInspector.viewManager.showView("resources"); 21 UI.viewManager.showView("resources");
22 InspectorTest.runDebuggerTestSuite([ 22 InspectorTest.runDebuggerTestSuite([
23 function testSetBreakpoint(next) 23 function testSetBreakpoint(next)
24 { 24 {
25 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou rce); 25 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou rce);
26 26
27 function didShowScriptSource(sourceFrame) 27 function didShowScriptSource(sourceFrame)
28 { 28 {
29 InspectorTest.addResult("Script source was shown."); 29 InspectorTest.addResult("Script source was shown.");
30 InspectorTest.addSniffer(WebInspector.JavaScriptSourceFrame.prot otype, "_addBreakpointDecoration", didAddBreakpoint); 30 InspectorTest.addSniffer(Sources.JavaScriptSourceFrame.prototype , "_addBreakpointDecoration", didAddBreakpoint);
31 InspectorTest.setBreakpoint(sourceFrame, 14, "", true); 31 InspectorTest.setBreakpoint(sourceFrame, 14, "", true);
32 } 32 }
33 33
34 function didAddBreakpoint(lineNumber) 34 function didAddBreakpoint(lineNumber)
35 { 35 {
36 InspectorTest.addResult("Breakpoint added to source frame at lin e " + lineNumber); 36 InspectorTest.addResult("Breakpoint added to source frame at lin e " + lineNumber);
37 next(); 37 next();
38 } 38 }
39 }, 39 },
40 40
41 function testConsoleMessage(next) 41 function testConsoleMessage(next)
42 { 42 {
43 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou rce); 43 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou rce);
44 44
45 var shownSourceFrame; 45 var shownSourceFrame;
46 function didShowScriptSource(sourceFrame) 46 function didShowScriptSource(sourceFrame)
47 { 47 {
48 InspectorTest.addResult("Script source was shown."); 48 InspectorTest.addResult("Script source was shown.");
49 shownSourceFrame = sourceFrame; 49 shownSourceFrame = sourceFrame;
50 InspectorTest.addSniffer(WebInspector.UISourceCodeFrame.prototyp e, "_addMessageToSource", didAddMessage); 50 InspectorTest.addSniffer(Sources.UISourceCodeFrame.prototype, "_ addMessageToSource", didAddMessage);
51 InspectorTest.addSniffer(WebInspector.UISourceCodeFrame.prototyp e, "_removeMessageFromSource", didRemoveMessage); 51 InspectorTest.addSniffer(Sources.UISourceCodeFrame.prototype, "_ removeMessageFromSource", didRemoveMessage);
52 InspectorTest.evaluateInPage("addErrorToConsole()"); 52 InspectorTest.evaluateInPage("addErrorToConsole()");
53 } 53 }
54 54
55 function didAddMessage(message) 55 function didAddMessage(message)
56 { 56 {
57 if (this !== shownSourceFrame) 57 if (this !== shownSourceFrame)
58 return; 58 return;
59 InspectorTest.addResult("Message added to source frame: " + mess age.text()); 59 InspectorTest.addResult("Message added to source frame: " + mess age.text());
60 setImmediate(function() { WebInspector.ConsoleView.clearConsole( ); }); 60 setImmediate(function() { Console.ConsoleView.clearConsole(); }) ;
61 } 61 }
62 62
63 function didRemoveMessage(message) 63 function didRemoveMessage(message)
64 { 64 {
65 if (this !== shownSourceFrame) 65 if (this !== shownSourceFrame)
66 return; 66 return;
67 InspectorTest.addResult("Message removed from source frame: " + message.text()); 67 InspectorTest.addResult("Message removed from source frame: " + message.text());
68 next(); 68 next();
69 } 69 }
70 }, 70 },
71 71
72 function testShowResource(next) 72 function testShowResource(next)
73 { 73 {
74 WebInspector.viewManager.showView("network"); 74 UI.viewManager.showView("network");
75 InspectorTest.addSniffer(WebInspector.SourceFrame.prototype, "show", didShowSourceFrame); 75 InspectorTest.addSniffer(SourceFrame.SourceFrame.prototype, "show", didShowSourceFrame);
76 76
77 InspectorTest.resourceTreeModel.forAllResources(visit); 77 InspectorTest.resourceTreeModel.forAllResources(visit);
78 function visit(resource) 78 function visit(resource)
79 { 79 {
80 if (resource.url.indexOf("debugger-test.js") !== -1) { 80 if (resource.url.indexOf("debugger-test.js") !== -1) {
81 WebInspector.panels.resources.showResource(resource, 1); 81 UI.panels.resources.showResource(resource, 1);
82 return true; 82 return true;
83 } 83 }
84 } 84 }
85 85
86 function didShowSourceFrame() 86 function didShowSourceFrame()
87 { 87 {
88 next(); 88 next();
89 } 89 }
90 } 90 }
91 ]); 91 ]);
92 }; 92 };
93 93
94 </script> 94 </script>
95 95
96 </head> 96 </head>
97 97
98 <body onload="runTest()"> 98 <body onload="runTest()">
99 <p>Tests that it's possible to set breakpoint in source frame, and that 99 <p>Tests that it's possible to set breakpoint in source frame, and that
100 source frame displays breakpoints and console errors. 100 source frame displays breakpoints and console errors.
101 </p> 101 </p>
102 102
103 </body> 103 </body>
104 </html> 104 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698