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

Side by Side Diff: LayoutTests/inspector-protocol/cpu-profiler/console-profileEnd-parameterless-crash.html

Issue 183663014: DevTools: Unify protocol test scripts naming with frontend tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed tests Created 6 years, 9 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 type="text/javascript" src="../../http/tests/inspector-protocol/resource s/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 function collectProfiles() 5 function collectProfiles()
6 { 6 {
7 console.profile(); 7 console.profile();
8 console.profile("titled"); 8 console.profile("titled");
9 console.profileEnd(); 9 console.profileEnd();
10 console.profileEnd(); 10 console.profileEnd();
11 } 11 }
12 12
13 function test() 13 function test()
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 </script> 47 </script>
48 </head> 48 </head>
49 <body onload="runTest()"> 49 <body onload="runTest()">
50 <p> 50 <p>
51 Tests that "console.profileEnd()" does not cause crash.<br> 51 Tests that "console.profileEnd()" does not cause crash.<br>
52 <a href="https://bugs.webkit.org/show_bug.cgi?id=105759">Bug 105759.</a><br> 52 <a href="https://bugs.webkit.org/show_bug.cgi?id=105759">Bug 105759.</a><br>
53 </p> 53 </p>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698