Chromium Code Reviews

Side by Side Diff: chrome/browser/resources/downloads.html

Issue 1759007: Refactor parts of the NTP to split things into more managable chunks.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Revert class/tag name changes in html file Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="icon" href="../../app/theme/downloads_favicon.png"> 6 <link rel="icon" href="../../app/theme/downloads_favicon.png">
7 <style> 7 <style>
8 body { 8 body {
9 background-color: white; 9 background-color: white;
10 color: black; 10 color: black;
(...skipping 173 matching lines...)
184 padding: 8px; 184 padding: 8px;
185 background-color: #ebeff9; 185 background-color: #ebeff9;
186 margin-right: 4px; 186 margin-right: 4px;
187 } 187 }
188 188
189 .footer { 189 .footer {
190 height: 24px; 190 height: 24px;
191 } 191 }
192 192
193 </style> 193 </style>
194 <script src="local_strings.js"></script> 194 <script src="shared/js/local_strings.js"></script>
195 <script> 195 <script>
196 196
197 /////////////////////////////////////////////////////////////////////////////// 197 ///////////////////////////////////////////////////////////////////////////////
198 // Helper functions 198 // Helper functions
199 function $(o) {return document.getElementById(o);} 199 function $(o) {return document.getElementById(o);}
200 200
201 function bind(fn, selfObj, var_args) { 201 function bind(fn, selfObj, var_args) {
202 var boundArgs = Array.prototype.slice.call(arguments, 2); 202 var boundArgs = Array.prototype.slice.call(arguments, 2);
203 return function() { 203 return function() {
204 var args = Array.prototype.slice.call(arguments); 204 var args = Array.prototype.slice.call(arguments);
(...skipping 567 matching lines...)
772 <div id="downloads-summary"> 772 <div id="downloads-summary">
773 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span> 773 <span id="downloads-summary-text" i18n-content="downloads">Downloads</span>
774 <a id="clear-all" href="" onclick="clearAll();" i18n-content="clear_all">Cle ar All</a> 774 <a id="clear-all" href="" onclick="clearAll();" i18n-content="clear_all">Cle ar All</a>
775 </div> 775 </div>
776 <div id="downloads-display"></div> 776 <div id="downloads-display"></div>
777 </div> 777 </div>
778 <div class="footer"> 778 <div class="footer">
779 </div> 779 </div>
780 </body> 780 </body>
781 </html> 781 </html>
OLDNEW

Powered by Google App Engine