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

Side by Side Diff: third_party/pycoverage/coverage/htmlfiles/pyfile.html

Issue 727003004: Add python coverage module to third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 PUBLIC "-//W3C//DTD html 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
2 <html>
3 <head>
4 <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
5 {# IE8 rounds line-height incorrectly, and adding this emulateIE7 line makes it right! #}
6 {# http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/768 4445e-f080-4d8f-8529-132763348e21 #}
7 <meta http-equiv='X-UA-Compatible' content='IE=emulateIE7' />
8 <title>Coverage for {{cu.name|escape}}: {{nums.pc_covered_str}}%</title>
9 <link rel='stylesheet' href='style.css' type='text/css'>
10 {% if extra_css %}
11 <link rel='stylesheet' href='{{ extra_css }}' type='text/css'>
12 {% endif %}
13 <script type='text/javascript' src='jquery.min.js'></script>
14 <script type='text/javascript' src='jquery.hotkeys.js'></script>
15 <script type='text/javascript' src='jquery.isonscreen.js'></script>
16 <script type='text/javascript' src='coverage_html.js'></script>
17 <script type='text/javascript' charset='utf-8'>
18 jQuery(document).ready(coverage.pyfile_ready);
19 </script>
20 </head>
21 <body id='pyfile'>
22
23 <div id='header'>
24 <div class='content'>
25 <h1>Coverage for <b>{{cu.name|escape}}</b> :
26 <span class='pc_cov'>{{nums.pc_covered_str}}%</span>
27 </h1>
28 <img id='keyboard_icon' src='keybd_closed.png'>
29 <h2 class='stats'>
30 {{nums.n_statements}} statements &nbsp;
31 <span class='{{c_run}} shortkey_r button_toggle_run'>{{nums.n_execut ed}} run</span>
32 <span class='{{c_mis}} shortkey_m button_toggle_mis'>{{nums.n_missin g}} missing</span>
33 <span class='{{c_exc}} shortkey_x button_toggle_exc'>{{nums.n_exclud ed}} excluded</span>
34 {% if arcs %}
35 <span class='{{c_par}} shortkey_p button_toggle_par'>{{nums.n_pa rtial_branches}} partial</span>
36 {% endif %}
37 </h2>
38 </div>
39 </div>
40
41 <div class='help_panel'>
42 <img id='panel_icon' src='keybd_open.png'>
43 <p class='legend'>Hot-keys on this page</p>
44 <div>
45 <p class='keyhelp'>
46 <span class='key'>r</span>
47 <span class='key'>m</span>
48 <span class='key'>x</span>
49 <span class='key'>p</span> &nbsp; toggle line displays
50 </p>
51 <p class='keyhelp'>
52 <span class='key'>j</span>
53 <span class='key'>k</span> &nbsp; next/prev highlighted chunk
54 </p>
55 <p class='keyhelp'>
56 <span class='key'>0</span> &nbsp; (zero) top of page
57 </p>
58 <p class='keyhelp'>
59 <span class='key'>1</span> &nbsp; (one) first highlighted chunk
60 </p>
61 </div>
62 </div>
63
64 <div id='source'>
65 <table cellspacing='0' cellpadding='0'>
66 <tr>
67 <td class='linenos' valign='top'>
68 {% for line in lines %}
69 <p id='n{{line.number}}' class='{{line.class}}'><a href='#n{ {line.number}}'>{{line.number}}</a></p>
70 {% endfor %}
71 </td>
72 <td class='text' valign='top'>
73 {% for line in lines %}
74 <p id='t{{line.number}}' class='{{line.class}}'>{% if line.a nnotate %}<span class='annotate' title='{{line.annotate_title}}'>{{line.annotate }}</span>{% endif %}{{line.html}}<span class='strut'>&nbsp;</span></p>
75 {% endfor %}
76 </td>
77 </tr>
78 </table>
79 </div>
80
81 <div id='footer'>
82 <div class='content'>
83 <p>
84 <a class='nav' href='index.html'>&#xab; index</a> &nbsp; &nbsp; <a c lass='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a>
85 </p>
86 </div>
87 </div>
88
89 </body>
90 </html>
OLDNEW
« no previous file with comments | « third_party/pycoverage/coverage/htmlfiles/keybd_open.png ('k') | third_party/pycoverage/coverage/htmlfiles/style.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698