| LEFT | RIGHT |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 - This file is part of Adblock Plus <http://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 - |
| 15 - You should have received a copy of the GNU General Public License | 15 - You should have received a copy of the GNU General Public License |
| 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 --> | 17 --> |
| 18 | 18 |
| 19 <html> | 19 <html> |
| 20 <head> | 20 <head> |
| 21 <link type="text/css" rel="stylesheet" href="skin/devtools-panel.css"> | 21 <link type="text/css" rel="stylesheet" href="skin/devtools-panel.css"> |
| 22 <script src="ext/common.js"></script> | 22 <script src="ext/common.js"></script> |
| 23 <script src="ext/content.js"></script> |
| 23 <script src="ext/devtools.js"></script> | 24 <script src="ext/devtools.js"></script> |
| 24 <script src="devtools-panel.js"></script> | 25 <script src="devtools-panel.js"></script> |
| 25 </head> | 26 </head> |
| 26 <body> | 27 <body> |
| 27 <header> | 28 <header> |
| 28 <table> | 29 <table> |
| 29 <colgroup> | 30 <colgroup> |
| 30 <col> | 31 <col> |
| 31 <col> | 32 <col> |
| 32 <col> | 33 <col> |
| 33 </colgroup> | 34 </colgroup> |
| 34 <tr> | 35 <tr> |
| 35 <td colspan="3"> | 36 <td colspan="3"> |
| 36 Show | 37 Show |
| 37 <select id="filter-state"> | 38 <select id="filter-state"> |
| 38 <option value="">all</option> | 39 <option value="">all</option> |
| 39 <option>blocked</option> | 40 <option>blocked</option> |
| 40 <option>whitelisted</option> | 41 <option>whitelisted</option> |
| 41 </select> | 42 </select> |
| 42 items of | 43 items of |
| 43 <select id="filter-type"> | 44 <select id="filter-type"> |
| 44 <option value="">any</option> | 45 <option value="">any</option> |
| 45 <option>SUBDOCUMENT</option> | 46 <option>SUBDOCUMENT</option> |
| 46 <option>IMAGE</option> | 47 <option>IMAGE</option> |
| 47 <option>STYLESHEET</option> | 48 <option>STYLESHEET</option> |
| 48 <option>SCRIPT</option> | 49 <option>SCRIPT</option> |
| 49 <option>OBJECT</option> | 50 <option>OBJECT</option> |
| 50 <option>XMLHTTPREQUEST</option> | 51 <option>XMLHTTPREQUEST</option> |
| 52 <option>FONT</option> |
| 53 <option>PING</option> |
| 51 <option>POPUP</option> | 54 <option>POPUP</option> |
| 52 <option>ELEMHIDE</option> | 55 <option>ELEMHIDE</option> |
| 53 <option>OTHER</option> | 56 <option>OTHER</option> |
| 54 </select> | 57 </select> |
| 55 type | 58 type |
| 56 </td> | 59 </td> |
| 57 </tr> | 60 </tr> |
| 58 <tr> | 61 <tr> |
| 59 <td> | 62 <td> |
| 60 <div class="request-wrapper"> | 63 <div class="request-wrapper"> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 <div class="filter-wrapper"> | 108 <div class="filter-wrapper"> |
| 106 <div class="filter"> </div> | 109 <div class="filter"> </div> |
| 107 <div class="origin"> </div> | 110 <div class="origin"> </div> |
| 108 </div> | 111 </div> |
| 109 </div> | 112 </div> |
| 110 </td> | 113 </td> |
| 111 </tr> | 114 </tr> |
| 112 </template> | 115 </template> |
| 113 </body> | 116 </body> |
| 114 </html> | 117 </html> |
| LEFT | RIGHT |