| OLD | NEW |
| 1 <div class="page hidden" id="cookiesViewPage"> | 1 <div class="page hidden" id="cookiesViewPage"> |
| 2 <h1> | 2 <h1> |
| 3 <span i18n-content="cookiesViewPage"></span> | 3 <span i18n-content="cookiesViewPage"></span> |
| 4 </h1> | 4 </h1> |
| 5 | 5 |
| 6 <label><span i18n-content="label_cookie_search"></span> | 6 <label><span i18n-content="label_cookie_search"></span> |
| 7 <input type=text id="cookiesSearchBox"></label> | 7 <input type=text id="cookiesSearchBox"></label> |
| 8 <button id="clearCookieSearchButton" | 8 <button id="clearCookieSearchButton" |
| 9 i18n-content="label_cookie_clear_search"></button> | 9 i18n-content="label_cookie_clear_search"></button> |
| 10 | 10 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 </tr> | 140 </tr> |
| 141 </table> | 141 </table> |
| 142 </div> | 142 </div> |
| 143 </td></tr> | 143 </td></tr> |
| 144 </table> | 144 </table> |
| 145 | 145 |
| 146 <div class="cookies-details-pane hidden" id="indexedDBInfo"> | 146 <div class="cookies-details-pane hidden" id="indexedDBInfo"> |
| 147 <table> | 147 <table> |
| 148 <tr> | 148 <tr> |
| 149 <td class="cookie-details-label" | 149 <td class="cookie-details-label" |
| 150 i18n-content="label_indexed_db_name"> | |
| 151 </td> | |
| 152 <td><span id="indexedDBName"></span></td> | |
| 153 </tr> | |
| 154 <tr> | |
| 155 <td class="cookie-details-label" | |
| 156 i18n-content="label_indexed_db_origin"> | 150 i18n-content="label_indexed_db_origin"> |
| 157 </td> | 151 </td> |
| 158 <td><span id="indexedDBOrigin"></span></td> | 152 <td><span id="indexedDBOrigin"></span></td> |
| 159 </tr> | 153 </tr> |
| 160 <tr> | 154 <tr> |
| 161 <td class="cookie-details-label" | 155 <td class="cookie-details-label" |
| 162 i18n-content="label_indexed_db_size"> | 156 i18n-content="label_indexed_db_size"> |
| 163 </td> | 157 </td> |
| 164 <td><span id="indexedDBSize"></span></td> | 158 <td><span id="indexedDBSize"></span></td> |
| 165 </tr> | 159 </tr> |
| 166 <tr> | 160 <tr> |
| 167 <td class="cookie-details-label" | 161 <td class="cookie-details-label" |
| 168 i18n-content="label_indexed_db_last_modified"> | 162 i18n-content="label_indexed_db_last_modified"> |
| 169 </td> | 163 </td> |
| 170 <td><span id="indexedDBLastModified"></span></td> | 164 <td><span id="indexedDBLastModified"></span></td> |
| 171 </tr> | 165 </tr> |
| 172 </table> | 166 </table> |
| 173 </div> | 167 </div> |
| 174 </td></tr> | 168 </td></tr> |
| 175 </table> | 169 </table> |
| 176 | 170 |
| 177 <button id="remove-cookie" i18n-content="remove_cookie"></button> | 171 <button id="remove-cookie" i18n-content="remove_cookie"></button> |
| 178 <button id="remove-all-cookie" i18n-content="remove_all_cookie"></button> | 172 <button id="remove-all-cookie" i18n-content="remove_all_cookie"></button> |
| 179 </div> | 173 </div> |
| OLD | NEW |