| OLD | NEW |
| 1 <div id="content-settings-page" class="page" hidden> | 1 <div id="content-settings-page" class="page" hidden> |
| 2 <h1 i18n-content="contentSettingsPage"></h1> | 2 <h1 i18n-content="contentSettingsPage"></h1> |
| 3 <!-- Cookie filter tab contents --> | 3 <!-- Cookie filter tab contents --> |
| 4 <section> | 4 <section> |
| 5 <h3 i18n-content="cookies_tab_label"></h3> | 5 <h3 i18n-content="cookies_tab_label"></h3> |
| 6 <div> | 6 <div> |
| 7 <div class="radio"> | 7 <div class="radio"> |
| 8 <label> | 8 <label> |
| 9 <input type="radio" name="cookies" value="allow"> | 9 <input type="radio" name="cookies" value="allow"> |
| 10 <span i18n-content="cookies_allow"></span> | 10 <span i18n-content="cookies_allow"></span> |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 <div class="radio"> | 78 <div class="radio"> |
| 79 <label> | 79 <label> |
| 80 <input type="radio" name="javascript" value="block"> | 80 <input type="radio" name="javascript" value="block"> |
| 81 <span i18n-content="javascript_block"></span> | 81 <span i18n-content="javascript_block"></span> |
| 82 </label> | 82 </label> |
| 83 </div> | 83 </div> |
| 84 <button class="exceptions-list-button" contentType="javascript" | 84 <button class="exceptions-list-button" contentType="javascript" |
| 85 i18n-content="manage_exceptions"></button> | 85 i18n-content="manage_exceptions"></button> |
| 86 </div> | 86 </div> |
| 87 </section> | 87 </section> |
| 88 <!-- Handlers settings --> |
| 89 <if expr="pp_ifdef('enable_register_protocol_handler')"> |
| 90 <section id="handlers-section"> |
| 91 <h3 i18n-content="handlers_tab_label"></h3> |
| 92 <div> |
| 93 <div class="radio"> |
| 94 <label> |
| 95 <input type="radio" name="handlers" value="allow"> |
| 96 <span i18n-content="handlers_allow"></span> |
| 97 </label> |
| 98 </div> |
| 99 <div class="radio"> |
| 100 <label> |
| 101 <input type="radio" name="handlers" value="block"> |
| 102 <span i18n-content="handlers_block"></span> |
| 103 </label> |
| 104 </div> |
| 105 |
| 106 <button id="manage-handlers-button" contentType="handlers" |
| 107 i18n-content="manage_handlers"></button> |
| 108 </div> |
| 109 </section> |
| 110 </if> |
| 88 <!-- Plug-ins filter --> | 111 <!-- Plug-ins filter --> |
| 89 <section> | 112 <section> |
| 90 <h3 i18n-content="plugins_tab_label"></h3> | 113 <h3 i18n-content="plugins_tab_label"></h3> |
| 91 <div> | 114 <div> |
| 92 <div class="radio"> | 115 <div class="radio"> |
| 93 <label> | 116 <label> |
| 94 <input type="radio" name="plugins" value="allow"> | 117 <input type="radio" name="plugins" value="allow"> |
| 95 <span i18n-content="plugins_allow"></span> | 118 <span i18n-content="plugins_allow"></span> |
| 96 </label> | 119 </label> |
| 97 </div> | 120 </div> |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 <label> | 203 <label> |
| 181 <input type="radio" name="notifications" value="block"> | 204 <input type="radio" name="notifications" value="block"> |
| 182 <span i18n-content="notifications_block"></span> | 205 <span i18n-content="notifications_block"></span> |
| 183 </label> | 206 </label> |
| 184 </div> | 207 </div> |
| 185 <button class="exceptions-list-button" contentType="notifications" | 208 <button class="exceptions-list-button" contentType="notifications" |
| 186 i18n-content="manage_exceptions"></button> | 209 i18n-content="manage_exceptions"></button> |
| 187 </div> | 210 </div> |
| 188 </section> | 211 </section> |
| 189 </div> | 212 </div> |
| OLD | NEW |