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

Side by Side Diff: sky/tools/webkitpy/thirdparty/coverage/htmlfiles/pyfile.html

Issue 946753002: Delete a bunch of dead python code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 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 <script type='text/javascript' src='jquery-1.4.3.min.js'></script>
11 <script type='text/javascript' src='jquery.hotkeys.js'></script>
12 <script type='text/javascript' src='jquery.isonscreen.js'></script>
13 <script type='text/javascript' src='coverage_html.js'></script>
14 <script type='text/javascript' charset='utf-8'>
15 jQuery(document).ready(coverage.pyfile_ready);
16 </script>
17 </head>
18 <body id='pyfile'>
19
20 <div id='header'>
21 <div class='content'>
22 <h1>Coverage for <b>{{cu.name|escape}}</b> :
23 <span class='pc_cov'>{{nums.pc_covered_str}}%</span>
24 </h1>
25 <img id='keyboard_icon' src='keybd_closed.png'>
26 <h2 class='stats'>
27 {{nums.n_statements}} statements
28 <span class='{{c_run}} shortkey_r' onclick='coverage.toggle_lines(th is, "run")'>{{nums.n_executed}} run</span>
29 <span class='{{c_mis}} shortkey_m' onclick='coverage.toggle_lines(th is, "mis")'>{{nums.n_missing}} missing</span>
30 <span class='{{c_exc}} shortkey_x' onclick='coverage.toggle_lines(th is, "exc")'>{{nums.n_excluded}} excluded</span>
31 {% if arcs %}
32 <span class='{{c_par}} shortkey_p' onclick='coverage.toggle_line s(this, "par")'>{{n_par}} partial</span>
33 {% endif %}
34 </h2>
35 </div>
36 </div>
37
38 <div class='help_panel'>
39 <img id='panel_icon' src='keybd_open.png'>
40 <p class='legend'>Hot-keys on this page</p>
41 <div>
42 <p class='keyhelp'>
43 <span class='key'>r</span>
44 <span class='key'>m</span>
45 <span class='key'>x</span>
46 <span class='key'>p</span> &nbsp; toggle line displays
47 </p>
48 <p class='keyhelp'>
49 <span class='key'>j</span>
50 <span class='key'>k</span> &nbsp; next/prev highlighted chunk
51 </p>
52 <p class='keyhelp'>
53 <span class='key'>0</span> &nbsp; (zero) top of page
54 </p>
55 <p class='keyhelp'>
56 <span class='key'>1</span> &nbsp; (one) first highlighted chunk
57 </p>
58 </div>
59 </div>
60
61 <div id='source'>
62 <table cellspacing='0' cellpadding='0'>
63 <tr>
64 <td class='linenos' valign='top'>
65 {% for line in lines %}
66 <p id='n{{line.number}}' class='{{line.class}}'><a href='#n{ {line.number}}'>{{line.number}}</a></p>
67 {% endfor %}
68 </td>
69 <td class='text' valign='top'>
70 {% for line in lines %}
71 <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>
72 {% endfor %}
73 </td>
74 </tr>
75 </table>
76 </div>
77
78 <div id='footer'>
79 <div class='content'>
80 <p>
81 <a class='nav' href='index.html'>&#xab; index</a> &nbsp; &nbsp; <a c lass='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a>
82 </p>
83 </div>
84 </div>
85
86 </body>
87 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698