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

Side by Side Diff: third_party/coverage-3.7.1/coverage/htmlfiles/index.html

Issue 225633007: Upgrade to coverage 3.7.1 and have it auto-build itself on first use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: sigh our imports are a mess Created 6 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv='Content-Type' content='text/html; charset=utf-8'> 4 <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
5 <title>{{ title|escape }}</title> 5 <title>{{ title|escape }}</title>
6 <link rel='stylesheet' href='style.css' type='text/css'> 6 <link rel='stylesheet' href='style.css' type='text/css'>
7 {% if extra_css %} 7 {% if extra_css %}
8 <link rel='stylesheet' href='{{ extra_css }}' type='text/css'> 8 <link rel='stylesheet' href='{{ extra_css }}' type='text/css'>
9 {% endif %} 9 {% endif %}
10 <script type='text/javascript' src='jquery-1.4.3.min.js'></script> 10 <script type='text/javascript' src='jquery.min.js'></script>
11 <script type='text/javascript' src='jquery.tablesorter.min.js'></script> 11 <script type='text/javascript' src='jquery.tablesorter.min.js'></script>
12 <script type='text/javascript' src='jquery.hotkeys.js'></script> 12 <script type='text/javascript' src='jquery.hotkeys.js'></script>
13 <script type='text/javascript' src='coverage_html.js'></script> 13 <script type='text/javascript' src='coverage_html.js'></script>
14 <script type='text/javascript' charset='utf-8'> 14 <script type='text/javascript' charset='utf-8'>
15 jQuery(document).ready(coverage.index_ready); 15 jQuery(document).ready(coverage.index_ready);
16 </script> 16 </script>
17 </head> 17 </head>
18 <body id='indexfile'> 18 <body id='indexfile'>
19 19
20 <div id='header'> 20 <div id='header'>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 <div id='footer'> 95 <div id='footer'>
96 <div class='content'> 96 <div class='content'>
97 <p> 97 <p>
98 <a class='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a> 98 <a class='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a>
99 </p> 99 </p>
100 </div> 100 </div>
101 </div> 101 </div>
102 102
103 </body> 103 </body>
104 </html> 104 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698