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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-pause/pause-in-inline-script.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>function foo() { }; 3 <script>function foo() { };
4 </script> 4 </script>
5 <script> 5 <script>
6 function bar() { }; 6 function bar() { };
7 </script><script>function f1() { debugger; }</script> 7 </script><script>function f1() { debugger; }</script>
8 <script> 8 <script>
9 function f2() { return f1(); } 9 function f2() { return f1(); }
10 </script> 10 </script>
(...skipping 16 matching lines...) Expand all
27 var testName = InspectorTest.mainTarget.inspectedURL(); 27 var testName = InspectorTest.mainTarget.inspectedURL();
28 testName = testName.substring(testName.lastIndexOf('/') + 1); 28 testName = testName.substring(testName.lastIndexOf('/') + 1);
29 29
30 InspectorTest.startDebuggerTest(step1); 30 InspectorTest.startDebuggerTest(step1);
31 31
32 function step1() 32 function step1()
33 { 33 {
34 InspectorTest.addResult("Did load front-end"); 34 InspectorTest.addResult("Did load front-end");
35 InspectorTest.addResult("Paused: " + !!InspectorTest.debuggerModel.debug gerPausedDetails()); 35 InspectorTest.addResult("Paused: " + !!InspectorTest.debuggerModel.debug gerPausedDetails());
36 InspectorTest.reloadPage(didReload.bind(this)); 36 InspectorTest.reloadPage(didReload.bind(this));
37 InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel. Events.DebuggerPaused, didPauseAfterReload, this); 37 InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.De buggerPaused, didPauseAfterReload, this);
38 } 38 }
39 39
40 function didReload() 40 function didReload()
41 { 41 {
42 InspectorTest.addResult("didReload"); 42 InspectorTest.addResult("didReload");
43 InspectorTest.completeDebuggerTest(); 43 InspectorTest.completeDebuggerTest();
44 } 44 }
45 45
46 function didPauseAfterReload(details) 46 function didPauseAfterReload(details)
47 { 47 {
48 InspectorTest.addResult("didPauseAfterReload"); 48 InspectorTest.addResult("didPauseAfterReload");
49 InspectorTest.addResult("Source strings corresponding to the call stack: "); 49 InspectorTest.addResult("Source strings corresponding to the call stack: ");
50 dumpNextCallFrame(didDump); 50 dumpNextCallFrame(didDump);
51 } 51 }
52 52
53 var callFrameIndex = 0; 53 var callFrameIndex = 0;
54 function dumpNextCallFrame(next) 54 function dumpNextCallFrame(next)
55 { 55 {
56 var callFrames = InspectorTest.debuggerModel.callFrames; 56 var callFrames = InspectorTest.debuggerModel.callFrames;
57 if (callFrameIndex === callFrames.length) { 57 if (callFrameIndex === callFrames.length) {
58 next(); 58 next();
59 return; 59 return;
60 } 60 }
61 var frame = callFrames[callFrameIndex]; 61 var frame = callFrames[callFrameIndex];
62 var uiLocation = WebInspector.debuggerWorkspaceBinding.rawLocationToUILo cation(frame.location()); 62 var uiLocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocati on(frame.location());
63 InspectorTest.showUISourceCode(uiLocation.uiSourceCode, dumpCallFrameLin e); 63 InspectorTest.showUISourceCode(uiLocation.uiSourceCode, dumpCallFrameLin e);
64 64
65 function dumpCallFrameLine(sourceFrame) 65 function dumpCallFrameLine(sourceFrame)
66 { 66 {
67 var resourceText = sourceFrame._textEditor.text(); 67 var resourceText = sourceFrame._textEditor.text();
68 var lines = resourceText.split("\n"); 68 var lines = resourceText.split("\n");
69 var lineNumber = uiLocation.lineNumber; 69 var lineNumber = uiLocation.lineNumber;
70 InspectorTest.addResult("Frame " + callFrameIndex + ") line " + line Number + ", content: " + lines[lineNumber] + " (must be part of function '" + fr ame.functionName + "')"); 70 InspectorTest.addResult("Frame " + callFrameIndex + ") line " + line Number + ", content: " + lines[lineNumber] + " (must be part of function '" + fr ame.functionName + "')");
71 callFrameIndex++ 71 callFrameIndex++
72 dumpNextCallFrame(next); 72 dumpNextCallFrame(next);
(...skipping 15 matching lines...) Expand all
88 </head> 88 </head>
89 89
90 <body onload="runTest()"> 90 <body onload="runTest()">
91 <p> 91 <p>
92 Tests that main resource script text is correct when paused in inline script on reload. 92 Tests that main resource script text is correct when paused in inline script on reload.
93 <a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a> 93 <a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a>
94 </p> 94 </p>
95 95
96 </body> 96 </body>
97 </html> 97 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698