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

Side by Side Diff: tools/telemetry/third_party/coverage/tests/js/index.html

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Coverage.py Javascript Test Suite</title>
5 <link rel="stylesheet" href="../qunit/qunit.css" type="text/css" media="scre en">
6 <script type="text/javascript" src="../../coverage/htmlfiles/jquery.min.js"> </script>
7 <script type='text/javascript' src="../../coverage/htmlfiles/jquery.isonscre en.js"></script>
8 <script type="text/javascript" src="../../coverage/htmlfiles/coverage_html.j s"></script>
9 <script type="text/javascript" src="../qunit/qunit.js"></script>
10 <script type="text/javascript" src="../qunit/jquery.tmpl.min.js"></script>
11
12 <style>
13 .r { background-color: red; }
14 .w { }
15 .b { background-color: blue; }
16 </style>
17
18 <!-- Templates for the coverage report output -->
19 <script id="fixture-template" type="text/x-jquery-tmpl">
20 <table cellspacing='0' cellpadding='0'>
21 <tr>
22 <td class='linenos' valign='top'>
23 <!-- #lineno-template goes here -->
24 </td>
25 <td class='text' valign='top'>
26 <!-- #text-template goes here -->
27 </td>
28 </tr>
29 </table>
30 </script>
31
32 <script id="lineno-template" type="text/x-jquery-tmpl">
33 <p id='n${number}' class='${klass}'><a href='#n${number}'>${number}</a>< /p>
34 </script>
35
36 <script id="text-template" type="text/x-jquery-tmpl">
37 <p id='t${number}' class='${klass}'>Hello, world!</p>
38 </script>
39
40 <!-- Pull in the tests -->
41 <script type="text/javascript" src="tests.js"></script>
42
43 </head>
44 <body>
45 <h1 id="qunit-header">Coverage.py Javascript Test Suite</h1>
46 <h2 id="qunit-banner"></h2>
47 <div id="qunit-testrunner-toolbar"></div>
48 <h2 id="qunit-userAgent"></h2>
49 <ol id="qunit-tests"></ol>
50 <div id="qunit-fixture"></div>
51 </body>
52 </html>
OLDNEW
« no previous file with comments | « tools/telemetry/third_party/coverage/tests/helpers.py ('k') | tools/telemetry/third_party/coverage/tests/js/tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698