LEFT | RIGHT |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 - This file is part of Adblock Plus <https://adblockplus.org/>, | 3 - This file is part of Adblock Plus <https://adblockplus.org/>, |
4 - Copyright (C) 2006-present eyeo GmbH | 4 - Copyright (C) 2006-present eyeo GmbH |
5 - | 5 - |
6 - Adblock Plus is free software: you can redistribute it and/or modify | 6 - Adblock Plus is free software: you can redistribute it and/or modify |
7 - it under the terms of the GNU General Public License version 3 as | 7 - it under the terms of the GNU General Public License version 3 as |
8 - published by the Free Software Foundation. | 8 - published by the Free Software Foundation. |
9 - | 9 - |
10 - Adblock Plus is distributed in the hope that it will be useful, | 10 - Adblock Plus is distributed in the hope that it will be useful, |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 <!-- General tab content --> | 79 <!-- General tab content --> |
80 <div id="content-general" role="tabpanel" aria-labelledby="tab-general"> | 80 <div id="content-general" role="tabpanel" aria-labelledby="tab-general"> |
81 <header> | 81 <header> |
82 <h1 class="i18n_options_tab_general"></h1> | 82 <h1 class="i18n_options_tab_general"></h1> |
83 <p class="i18n_options_general_description"></p> | 83 <p class="i18n_options_general_description"></p> |
84 </header> | 84 </header> |
85 <section class="cols"> | 85 <section class="cols"> |
86 <h2 class="i18n_options_privacy_header"></h2> | 86 <h2 class="i18n_options_privacy_header"></h2> |
87 <ul class="list" id="recommend-protection-list-table"> | 87 <ul class="list" id="recommend-protection-list-table"> |
88 <template> | 88 <template> |
89 <button data-action="toggle-remove-subscription" role="checkbox" c
lass="control icon"></button> | 89 <button data-action="toggle-remove-subscription" data-disable="pre
configured" role="checkbox" class="control icon"></button> |
90 <span data-display="title"></span> | 90 <span data-display="title"></span> |
91 <span data-tooltip="options_protection_%value%_tooltip"></span> | 91 <span data-tooltip="options_protection_%value%_tooltip"></span> |
92 </template> | 92 </template> |
93 </ul> | 93 </ul> |
94 </section> | 94 </section> |
95 <section class="cols"> | 95 <section class="cols"> |
96 <header> | 96 <header> |
97 <h2 class="i18n_options_acceptableAds_header"></h2> | 97 <h2 class="i18n_options_acceptableAds_header"></h2> |
98 <p class="i18n_options_acceptableAds_description"></p> | 98 <p class="i18n_options_acceptableAds_description"></p> |
99 </header> | 99 </header> |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 </div> | 430 </div> |
431 <!-- Notification --> | 431 <!-- Notification --> |
432 <div id="notification" aria-hidden="true" aria-live="polite"> | 432 <div id="notification" aria-hidden="true" aria-live="polite"> |
433 <strong id="notification-text"></strong> | 433 <strong id="notification-text"></strong> |
434 <button class="icon close secondary" data-action="hide-notification"> | 434 <button class="icon close secondary" data-action="hide-notification"> |
435 <span class="i18n_options_notification_hide sr-only"></span> | 435 <span class="i18n_options_notification_hide sr-only"></span> |
436 </button> | 436 </button> |
437 </div> | 437 </div> |
438 </body> | 438 </body> |
439 </html> | 439 </html> |
LEFT | RIGHT |