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

Side by Side Diff: chrome/browser/resources/tracing/tests.html

Issue 10065009: Add an overall test runner to about:tracing (Closed) Base URL: git://localhost/home/nduca/Local/chrome/src@master
Patch Set: More tweaks. Proof that READMEs are useless. Created 8 years, 8 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
« no previous file with comments | « chrome/browser/resources/tracing/README ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <head>
9 <title>All Tracing Tests</title>
10 <script>
11 tests = [
12 "timeline_model_test.html",
13 "timeline_track_test.html",
14 "linux_perf_importer_test.html",
15 "trace_event_importer_test.html",
16 "profiling_view_test.html",
17 ];
18 </script>
19 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j s"></script>
20 <script>
21 goog.require('goog.testing.MultiTestRunner');
22 </script>
23 <link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/clo sure/goog/css/multitestrunner.css" type="text/css">
24 </head>
25 <body>
26 <div id="runner"></div>
27 <script>
28 var testRunner = new goog.testing.MultiTestRunner()
29 .setName(document.title)
30 .setBasePath('./')
31 .setStatsBucketSizes(5, 500)
32 .setHidePasses(true)
33 .addTests(tests);
34 testRunner.render(document.getElementById('runner'));
35 testRunner.start();
36 </script>
37 </body>
38 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/tracing/README ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698