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

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

Issue 8511046: deprecate webui.css (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undo mistake in downloads Created 9 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 | 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/history_favicon.png"> 6 <link rel="icon" href="../../app/theme/history_favicon.png">
7 <script src="chrome://resources/js/local_strings.js"></script> 7 <script src="chrome://resources/js/local_strings.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://history/history.js"></script> 9 <script src="chrome://history/history.js"></script>
10 <script src="chrome://history/strings.js"></script> 10 <script src="chrome://history/strings.js"></script>
11 <link rel="stylesheet" href="webui.css"> 11 <link rel="stylesheet" href="old_webui.css">
12 <style> 12 <style>
13 #results-separator { 13 #results-separator {
14 margin-top:12px; 14 margin-top:12px;
15 border-top:1px solid #9cc2ef; 15 border-top:1px solid #9cc2ef;
16 background-color:#ebeff9; 16 background-color:#ebeff9;
17 font-weight:bold; 17 font-weight:bold;
18 padding:3px; 18 padding:3px;
19 margin-bottom:-8px; 19 margin-bottom:-8px;
20 } 20 }
21 #results-separator table { 21 #results-separator table {
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 <div class="main"> 136 <div class="main">
137 <div id="results-separator"> 137 <div id="results-separator">
138 <table border="0" cellPadding="0" cellSpacing="0"> 138 <table border="0" cellPadding="0" cellSpacing="0">
139 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr> 139 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr>
140 </table> 140 </table>
141 </div> 141 </div>
142 <div id="editing-controls"></div> 142 <div id="editing-controls"></div>
143 <div id="results-display"></div> 143 <div id="results-display"></div>
144 <div id="results-pagination"></div> 144 <div id="results-pagination"></div>
145 </div> 145 </div>
146 <div class="footer">
147 </div>
148 <script src="chrome://resources/js/i18n_template.js"></script> 146 <script src="chrome://resources/js/i18n_template.js"></script>
149 <script src="chrome://resources/js/i18n_process.js"></script> 147 <script src="chrome://resources/js/i18n_process.js"></script>
150 </body> 148 </body>
151 </html> 149 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698