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 <!-- X-WebKit-CSP is our development name for Content-Security-Policy. |
| 6 TODO(tsepez) rename when Content-security-policy is done. --> |
| 7 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome://
resources chrome://history"> |
5 <title i18n-content="title"></title> | 8 <title i18n-content="title"></title> |
6 <link rel="icon" href="../../app/theme/history_favicon.png"> | 9 <link rel="icon" href="../../app/theme/history_favicon.png"> |
7 <script src="chrome://resources/js/local_strings.js"></script> | 10 <script src="chrome://resources/js/local_strings.js"></script> |
8 <script src="chrome://resources/js/util.js"></script> | 11 <script src="chrome://resources/js/util.js"></script> |
9 <script src="chrome://history/history.js"></script> | |
10 <link rel="stylesheet" href="webui.css"> | 12 <link rel="stylesheet" href="webui.css"> |
11 <style> | 13 <style> |
12 #results-separator { | 14 #results-separator { |
13 margin-top:12px; | 15 margin-top:12px; |
14 border-top:1px solid #9cc2ef; | 16 border-top:1px solid #9cc2ef; |
15 background-color:#ebeff9; | 17 background-color:#ebeff9; |
16 font-weight:bold; | 18 font-weight:bold; |
17 padding:3px; | 19 padding:3px; |
18 margin-bottom:-8px; | 20 margin-bottom:-8px; |
19 } | 21 } |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 } | 114 } |
113 html[dir='rtl'] .entry .title > a { | 115 html[dir='rtl'] .entry .title > a { |
114 background-position-x:right; | 116 background-position-x:right; |
115 padding-left:0px; | 117 padding-left:0px; |
116 padding-right:22px; | 118 padding-right:22px; |
117 } | 119 } |
118 #results-pagination { | 120 #results-pagination { |
119 padding-top:24px; | 121 padding-top:24px; |
120 -webkit-margin-start:18px; | 122 -webkit-margin-start:18px; |
121 } | 123 } |
122 | |
123 </style> | 124 </style> |
124 </head> | 125 </head> |
125 <body onload="load();" i18n-values=".style.fontFamily:fontfamily;.style.fontSize
:fontsize"> | 126 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
126 <div class="header"> | 127 <div class="header"> |
127 <a href="" onclick="setSearch(''); return false;"> | 128 <a id="history-section" href=""> |
128 <img src="shared/images/history_section.png" | 129 <img src="shared/images/history_section.png" |
129 width="67" height="67" class="logo" border="0"></a> | 130 width="67" height="67" class="logo" border="0"></a> |
130 <form method="post" action="" | 131 <form id="search-form" method="post" action="" |
131 onsubmit="setSearch(this.term.value); return false;" | |
132 class="form"> | 132 class="form"> |
133 <input type="text" name="term" id="term"> | 133 <input type="text" name="term" id="term"> |
134 <input type="submit" name="submit" i18n-values="value:searchbutton"> | 134 <input type="submit" name="submit" i18n-values="value:searchbutton"> |
135 </form> | 135 </form> |
136 </div> | 136 </div> |
137 <div class="main"> | 137 <div class="main"> |
138 <div id="results-separator"> | 138 <div id="results-separator"> |
139 <table border="0" cellPadding="0" cellSpacing="0"> | 139 <table border="0" cellPadding="0" cellSpacing="0"> |
140 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr> | 140 <tr><td id="results-summary"></td><td id="edit-button"><p></p></td></tr> |
141 </table> | 141 </table> |
142 </div> | 142 </div> |
143 <div id="editing-controls"></div> | 143 <div id="editing-controls"></div> |
144 <div id="results-display"></div> | 144 <div id="results-display"></div> |
145 <div id="results-pagination"></div> | 145 <div id="results-pagination"></div> |
146 </div> | 146 </div> |
147 <div class="footer"> | 147 <div class="footer"> |
148 </div> | 148 </div> |
| 149 <script src="chrome://history/history.js"></script> |
149 <script src="chrome://history/strings.js"></script> | 150 <script src="chrome://history/strings.js"></script> |
150 <script src="chrome://resources/js/i18n_template.js"></script> | 151 <script src="chrome://resources/js/i18n_template.js"></script> |
151 <script src="chrome://resources/js/i18n_process.js"></script> | 152 <script src="chrome://resources/js/i18n_process.js"></script> |
152 </body> | 153 </body> |
153 </html> | 154 </html> |
OLD | NEW |