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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-doesnt-step-into-injected-script.html

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp Created 3 years, 6 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 type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script> 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource s/inspector-protocol-test.js"></script>
4 <script> 4 <script>
5 5
6 function foo() 6 function foo()
7 { 7 {
8 return 239; 8 return 239;
9 } 9 }
10 10
11 function test() 11 function test()
12 { 12 {
13 InspectorTest.sendCommandOrDie("Debugger.enable", {}); 13 InspectorTest.sendCommandOrDie("Debugger.enable", {});
(...skipping 16 matching lines...) Expand all
30 InspectorTest.log("Perform " + action); 30 InspectorTest.log("Perform " + action);
31 InspectorTest.sendCommandOrDie("Debugger." + action, {}); 31 InspectorTest.sendCommandOrDie("Debugger." + action, {});
32 } 32 }
33 } 33 }
34 </script> 34 </script>
35 </head> 35 </head>
36 <body onLoad="runTest();"> 36 <body onLoad="runTest();">
37 Check that stepInto at then end of the script go to next user script instead Inj ectedScriptSource.js. 37 Check that stepInto at then end of the script go to next user script instead Inj ectedScriptSource.js.
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698