OLD | NEW |
1 <div id="content-settings-page" class="page" hidden> | 1 <div id="content-settings-page" class="page" hidden> |
2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
3 <h1 i18n-content="contentSettingsPage"></h1> | 3 <h1 i18n-content="contentSettingsPage"></h1> |
4 <div class="content-area"> | 4 <div class="content-area"> |
5 <!-- Cookie filter tab contents --> | 5 <!-- Cookie filter tab contents --> |
6 <section> | 6 <section> |
7 <h3 i18n-content="cookies_tab_label"></h3> | 7 <h3 i18n-content="cookies_tab_label"></h3> |
8 <div> | 8 <div> |
9 <div class="radio"> | 9 <div class="radio"> |
10 <label> | 10 <label> |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 <label> | 80 <label> |
81 <input type="radio" name="javascript" value="block"> | 81 <input type="radio" name="javascript" value="block"> |
82 <span i18n-content="javascript_block"></span> | 82 <span i18n-content="javascript_block"></span> |
83 </label> | 83 </label> |
84 </div> | 84 </div> |
85 <button class="exceptions-list-button" contentType="javascript" | 85 <button class="exceptions-list-button" contentType="javascript" |
86 i18n-content="manage_exceptions"></button> | 86 i18n-content="manage_exceptions"></button> |
87 </div> | 87 </div> |
88 </section> | 88 </section> |
89 <!-- Handlers settings --> | 89 <!-- Handlers settings --> |
90 <if expr="pp_ifdef('enable_register_protocol_handler')"> | 90 <section id="handlers-section"> |
91 <section id="handlers-section"> | 91 <h3 i18n-content="handlers_tab_label"></h3> |
92 <h3 i18n-content="handlers_tab_label"></h3> | 92 <div> |
93 <div> | 93 <div class="radio"> |
94 <div class="radio"> | 94 <label> |
95 <label> | 95 <input type="radio" name="handlers" value="allow" |
96 <input type="radio" name="handlers" value="allow" | 96 class="handler-radio"> |
97 class="handler-radio"> | 97 <span i18n-content="handlers_allow"></span> |
98 <span i18n-content="handlers_allow"></span> | 98 </label> |
99 </label> | |
100 </div> | |
101 <div class="radio"> | |
102 <label> | |
103 <input type="radio" name="handlers" value="block" | |
104 class="handler-radio"> | |
105 <span i18n-content="handlers_block"></span> | |
106 </label> | |
107 </div> | |
108 <button id="manage-handlers-button" contentType="handlers" | |
109 i18n-content="manage_handlers"></button> | |
110 </div> | 99 </div> |
111 </section> | 100 <div class="radio"> |
112 </if> | 101 <label> |
| 102 <input type="radio" name="handlers" value="block" |
| 103 class="handler-radio"> |
| 104 <span i18n-content="handlers_block"></span> |
| 105 </label> |
| 106 </div> |
| 107 <button id="manage-handlers-button" contentType="handlers" |
| 108 i18n-content="manage_handlers"></button> |
| 109 </div> |
| 110 </section> |
113 <!-- Plug-ins filter --> | 111 <!-- Plug-ins filter --> |
114 <section> | 112 <section> |
115 <h3 i18n-content="plugins_tab_label"></h3> | 113 <h3 i18n-content="plugins_tab_label"></h3> |
116 <div> | 114 <div> |
117 <div class="radio"> | 115 <div class="radio"> |
118 <label> | 116 <label> |
119 <input type="radio" name="plugins" value="allow"> | 117 <input type="radio" name="plugins" value="allow"> |
120 <span i18n-content="plugins_allow"></span> | 118 <span i18n-content="plugins_allow"></span> |
121 </label> | 119 </label> |
122 </div> | 120 </div> |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 </div> | 273 </div> |
276 </section> | 274 </section> |
277 </if> | 275 </if> |
278 </div> | 276 </div> |
279 <div class="action-area"> | 277 <div class="action-area"> |
280 <div class="button-strip"> | 278 <div class="button-strip"> |
281 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> | 279 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> |
282 </div> | 280 </div> |
283 </div> | 281 </div> |
284 </div> | 282 </div> |
OLD | NEW |