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

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

Issue 2897015: Clean up browser_resources.grd:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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
« no previous file with comments | « chrome/browser/resources/help.gif ('k') | chrome/browser/resources/history2.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="shared/js/local_strings.js"></script> 7 <script src="shared/js/local_strings.js"></script>
8 <script> 8 <script>
9 /////////////////////////////////////////////////////////////////////////////// 9 ///////////////////////////////////////////////////////////////////////////////
10 // Globals: 10 // Globals:
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 .entry .title { 1128 .entry .title {
1129 max-width:600px; 1129 max-width:600px;
1130 overflow: hidden; 1130 overflow: hidden;
1131 white-space: nowrap; 1131 white-space: nowrap;
1132 text-overflow: ellipsis; 1132 text-overflow: ellipsis;
1133 } 1133 }
1134 .results .time, .results .title { 1134 .results .time, .results .title {
1135 margin-top:18px; 1135 margin-top:18px;
1136 } 1136 }
1137 .title > .starred { 1137 .title > .starred {
1138 background:url('../../app/theme/star_small.png'); 1138 background:url('shared/images/star_small.png');
1139 background-repeat:no-repeat; 1139 background-repeat:no-repeat;
1140 display:inline-block; 1140 display:inline-block;
1141 margin-left:12px; 1141 margin-left:12px;
1142 margin-right:0; 1142 margin-right:0;
1143 width:11px; 1143 width:11px;
1144 height:11px; 1144 height:11px;
1145 } 1145 }
1146 html[dir='rtl'] .title > .starred { 1146 html[dir='rtl'] .title > .starred {
1147 margin-left:0; 1147 margin-left:0;
1148 margin-right:12px; 1148 margin-right:12px;
(...skipping 16 matching lines...) Expand all
1165 #results-pagination { 1165 #results-pagination {
1166 padding-top:24px; 1166 padding-top:24px;
1167 margin-left:18px; 1167 margin-left:18px;
1168 } 1168 }
1169 1169
1170 </style> 1170 </style>
1171 </head> 1171 </head>
1172 <body onload="load();" i18n-values=".style.fontFamily:fontfamily;.style.fontSize :fontsize"> 1172 <body onload="load();" i18n-values=".style.fontFamily:fontfamily;.style.fontSize :fontsize">
1173 <div class="header"> 1173 <div class="header">
1174 <a href="" onclick="setSearch(''); return false;"> 1174 <a href="" onclick="setSearch(''); return false;">
1175 <img src="../../app/theme/history_section.png" 1175 <img src="shared/images/history_section.png"
1176 width="67" height="67" class="logo" border="0"></a> 1176 width="67" height="67" class="logo" border="0"></a>
1177 <form method="post" action="" 1177 <form method="post" action=""
1178 onsubmit="setSearch(this.term.value); return false;" 1178 onsubmit="setSearch(this.term.value); return false;"
1179 class="form"> 1179 class="form">
1180 <input type="text" name="term" id="term"> 1180 <input type="text" name="term" id="term">
1181 <input type="submit" name="submit" i18n-values="value:searchbutton"> 1181 <input type="submit" name="submit" i18n-values="value:searchbutton">
1182 </form> 1182 </form>
1183 </div> 1183 </div>
1184 <div class="main"> 1184 <div class="main">
1185 <div id="results-separator"> 1185 <div id="results-separator">
1186 <table border="0" cellPadding="0" cellSpacing="0"> 1186 <table border="0" cellPadding="0" cellSpacing="0">
1187 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr> 1187 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr>
1188 </table> 1188 </table>
1189 </div> 1189 </div>
1190 <div id="editing-controls"></div> 1190 <div id="editing-controls"></div>
1191 <div id="results-display"></div> 1191 <div id="results-display"></div>
1192 <div id="results-pagination"></div> 1192 <div id="results-pagination"></div>
1193 </div> 1193 </div>
1194 <div class="footer"> 1194 <div class="footer">
1195 </div> 1195 </div>
1196 </body> 1196 </body>
1197 </html> 1197 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/help.gif ('k') | chrome/browser/resources/history2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698