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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/debugger/access-obsolete-frame.html

Issue 1838683002: [DevTools] Debugger::currentCallFrames returns array instead linked list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wrap-with-corrrect-injected-script
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script>
4 <script> 4 <script>
5 5
6 function testFunction() 6 function testFunction()
7 { 7 {
8 debugger; 8 debugger;
9 } 9 }
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 function callbackSetVariableValue(response) 54 function callbackSetVariableValue(response)
55 { 55 {
56 logErrorResponse(response); 56 logErrorResponse(response);
57 InspectorTest.completeTest(); 57 InspectorTest.completeTest();
58 } 58 }
59 59
60 function logErrorResponse(response) 60 function logErrorResponse(response)
61 { 61 {
62 if (response.error) { 62 if (response.error) {
63 if (response.error.message.indexOf("debugger is not on pause") != -1 ) { 63 if (response.error.message.indexOf("Can only perform operation while paused.") != -1) {
64 InspectorTest.log("PASS, error message as expected"); 64 InspectorTest.log("PASS, error message as expected");
65 return; 65 return;
66 } 66 }
67 } 67 }
68 InspectorTest.log("FAIL, unexpected error message"); 68 InspectorTest.log("FAIL, unexpected error message");
69 InspectorTest.log(JSON.stringify(response)); 69 InspectorTest.log(JSON.stringify(response));
70 } 70 }
71 } 71 }
72 </script> 72 </script>
73 </head> 73 </head>
74 <body onLoad="runTest();"> 74 <body onLoad="runTest();">
75 </body> 75 </body>
76 </html> 76 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698