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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-dfs.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 type="text/javascript"> 5 <script type="text/javascript">
6 6
7 var test = function() 7 var test = function()
8 { 8 {
9 9
10 function dumper(record) 10 function dumper(record)
11 { 11 {
12 InspectorTest.addResult(record.type()); 12 InspectorTest.addResult(record.type());
13 } 13 }
14 14
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 model.forAllRecords(null, dumper); 59 model.forAllRecords(null, dumper);
60 InspectorTest.completeTest(); 60 InspectorTest.completeTest();
61 } 61 }
62 62
63 </script> 63 </script>
64 </head> 64 </head>
65 <body onload="runTest()"> 65 <body onload="runTest()">
66 <p>Tests TimelineModel.forAllRecords function.</p> 66 <p>Tests TimelineModel.forAllRecords function.</p>
67 </body> 67 </body>
68 </html> 68 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698