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

Side by Side Diff: LayoutTests/inspector/sources/debugger-ui/reveal-not-skipped.html

Issue 1153923005: DevTools: shard inspector/debugger tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
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="resources/script1.js"></script> 5 <script src="../debugger/resources/script1.js"></script>
6 <script> 6 <script>
7 function throwAnException() 7 function throwAnException()
8 { 8 {
9 var i = 0; var j = i + 2; var k = j + i; 9 var i = 0; var j = i + 2; var k = j + i;
10 10
11 return unknown_var; 11 return unknown_var;
12 } 12 }
13 13
14 var test = function() 14 var test = function()
15 { 15 {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 } 86 }
87 ]); 87 ]);
88 } 88 }
89 </script> 89 </script>
90 </head> 90 </head>
91 <body onload="runTest()"> 91 <body onload="runTest()">
92 <p>Tests that certain user actions in scripts panel reveal execution line.</p> 92 <p>Tests that certain user actions in scripts panel reveal execution line.</p>
93 </body> 93 </body>
94 </html> 94 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698