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-2015 Eyeo GmbH | 4 - Copyright (C) 2006-2016 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, |
11 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 - GNU General Public License for more details. | 13 - GNU General Public License for more details. |
14 - | 14 - |
(...skipping 27 matching lines...) Expand all Loading... |
42 </select> | 42 </select> |
43 items of | 43 items of |
44 <select id="filter-type"> | 44 <select id="filter-type"> |
45 <option value="">any</option> | 45 <option value="">any</option> |
46 <option>SUBDOCUMENT</option> | 46 <option>SUBDOCUMENT</option> |
47 <option>IMAGE</option> | 47 <option>IMAGE</option> |
48 <option>STYLESHEET</option> | 48 <option>STYLESHEET</option> |
49 <option>SCRIPT</option> | 49 <option>SCRIPT</option> |
50 <option>OBJECT</option> | 50 <option>OBJECT</option> |
51 <option>XMLHTTPREQUEST</option> | 51 <option>XMLHTTPREQUEST</option> |
| 52 <option>FONT</option> |
| 53 <option>PING</option> |
52 <option>POPUP</option> | 54 <option>POPUP</option> |
53 <option>ELEMHIDE</option> | 55 <option>ELEMHIDE</option> |
54 <option>OTHER</option> | 56 <option>OTHER</option> |
55 </select> | 57 </select> |
56 type | 58 type |
57 </td> | 59 </td> |
58 </tr> | 60 </tr> |
59 <tr> | 61 <tr> |
60 <td> | 62 <td> |
61 <div class="request-wrapper"> | 63 <div class="request-wrapper"> |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 <div class="filter-wrapper"> | 108 <div class="filter-wrapper"> |
107 <div class="filter"> </div> | 109 <div class="filter"> </div> |
108 <div class="origin"> </div> | 110 <div class="origin"> </div> |
109 </div> | 111 </div> |
110 </div> | 112 </div> |
111 </td> | 113 </td> |
112 </tr> | 114 </tr> |
113 </template> | 115 </template> |
114 </body> | 116 </body> |
115 </html> | 117 </html> |
LEFT | RIGHT |