| OLD | NEW |
| 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 src="shared/js/util.js"></script> | 8 <script src="shared/js/util.js"></script> |
| 9 <script> | 9 <script> |
| 10 /////////////////////////////////////////////////////////////////////////////// | 10 /////////////////////////////////////////////////////////////////////////////// |
| (...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 * Our history system calls this function if a delete is not ready (e.g. | 1035 * Our history system calls this function if a delete is not ready (e.g. |
| 1036 * another delete is in-progress). | 1036 * another delete is in-progress). |
| 1037 */ | 1037 */ |
| 1038 function deleteFailed() { | 1038 function deleteFailed() { |
| 1039 window.console.log('Delete failed'); | 1039 window.console.log('Delete failed'); |
| 1040 // The deletion failed - try again later. | 1040 // The deletion failed - try again later. |
| 1041 deleteInFlight = false; | 1041 deleteInFlight = false; |
| 1042 setTimeout(deleteNextInQueue, 500); | 1042 setTimeout(deleteNextInQueue, 500); |
| 1043 } | 1043 } |
| 1044 </script> | 1044 </script> |
| 1045 <link rel="stylesheet" href="webui.css"> | 1045 <link rel="stylesheet" href="chrome://resources/css/webui.css"> |
| 1046 <style> | 1046 <style> |
| 1047 #results-separator { | 1047 #results-separator { |
| 1048 margin-top:12px; | 1048 margin-top:12px; |
| 1049 border-top:1px solid #9cc2ef; | 1049 border-top:1px solid #9cc2ef; |
| 1050 background-color:#ebeff9; | 1050 background-color:#ebeff9; |
| 1051 font-weight:bold; | 1051 font-weight:bold; |
| 1052 padding:3px; | 1052 padding:3px; |
| 1053 margin-bottom:-8px; | 1053 margin-bottom:-8px; |
| 1054 } | 1054 } |
| 1055 #results-separator table { | 1055 #results-separator table { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1176 </table> | 1176 </table> |
| 1177 </div> | 1177 </div> |
| 1178 <div id="editing-controls"></div> | 1178 <div id="editing-controls"></div> |
| 1179 <div id="results-display"></div> | 1179 <div id="results-display"></div> |
| 1180 <div id="results-pagination"></div> | 1180 <div id="results-pagination"></div> |
| 1181 </div> | 1181 </div> |
| 1182 <div class="footer"> | 1182 <div class="footer"> |
| 1183 </div> | 1183 </div> |
| 1184 </body> | 1184 </body> |
| 1185 </html> | 1185 </html> |
| OLD | NEW |