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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-time/timeline-usertiming.html

Issue 2145873002: [DevTools] Split inspector/tracing into subdirectories to speed things up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/timeline-test.js"></script> 4 <script src="../../../http/tests/inspector/timeline-test.js"></script>
5 <script src="../tracing-test.js"></script> 5 <script src="../../tracing-test.js"></script>
6 <script> 6 <script>
7 7
8 function simplePerformanceMeasure() 8 function simplePerformanceMeasure()
9 { 9 {
10 performance.mark("a-start"); 10 performance.mark("a-start");
11 performance.mark("a-end"); 11 performance.mark("a-end");
12 performance.measure("a", "a-start", "a-end"); 12 performance.measure("a", "a-start", "a-end");
13 } 13 }
14 14
15 function nestedPerformanceMeasure() 15 function nestedPerformanceMeasure()
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } 105 }
106 106
107 </script> 107 </script>
108 </head> 108 </head>
109 109
110 <body onload="runTest()"> 110 <body onload="runTest()">
111 <p>Test performance.mark/measure records on Timeline</p> 111 <p>Test performance.mark/measure records on Timeline</p>
112 112
113 </body> 113 </body>
114 </html> 114 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698