| 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> |
| 30 <colgroup> |
| 31 <col> |
| 32 <col> |
| 33 <col> |
| 34 </colgroup> |
| 29 <tr> | 35 <tr> |
| 30 <td colspan="2"> | 36 <td colspan="3"> |
| 31 Show | 37 Show |
| 32 <select id="filter-state"> | 38 <select id="filter-state"> |
| 33 <option value="">all</option> | 39 <option value="">all</option> |
| 34 <option>blocked</option> | 40 <option>blocked</option> |
| 35 <option>whitelisted</option> | 41 <option>whitelisted</option> |
| 36 </select> | 42 </select> |
| 37 items of | 43 items of |
| 38 <select id="filter-type"> | 44 <select id="filter-type"> |
| 39 <option value="">any</option> | 45 <option value="">any</option> |
| 40 <option>SUBDOCUMENT</option> | 46 <option>SUBDOCUMENT</option> |
| 41 <option>IMAGE</option> | 47 <option>IMAGE</option> |
| 42 <option>STYLESHEET</option> | 48 <option>STYLESHEET</option> |
| 43 <option>SCRIPT</option> | 49 <option>SCRIPT</option> |
| 44 <option>OBJECT</option> | 50 <option>OBJECT</option> |
| 45 <option>XMLHTTPREQUEST</option> | 51 <option>XMLHTTPREQUEST</option> |
| 52 <option>FONT</option> |
| 53 <option>PING</option> |
| 46 <option>POPUP</option> | 54 <option>POPUP</option> |
| 47 <option>ELEMHIDE</option> | 55 <option>ELEMHIDE</option> |
| 48 <option>OTHER</option> | 56 <option>OTHER</option> |
| 49 </select> | 57 </select> |
| 50 type | 58 type |
| 51 </td> | 59 </td> |
| 52 </tr> | 60 </tr> |
| 53 <tr> | 61 <tr> |
| 54 <td> | 62 <td> |
| 55 <div class="request-wrapper"> | 63 <div class="request-wrapper"> |
| 56 <div class="url">Request</div> | 64 <div class="url">Request</div> |
| 57 <div class="domain">Document domain</div> | 65 <div class="domain">Document domain</div> |
| 58 <div class="type">Type</div> | |
| 59 </div> | 66 </div> |
| 67 </td> |
| 68 <td> |
| 69 <div class="type">Type</div> |
| 60 </td> | 70 </td> |
| 61 <td> | 71 <td> |
| 62 <div class="filter-wrapper"> | 72 <div class="filter-wrapper"> |
| 63 <div class="filter">Filter</div> | 73 <div class="filter">Filter</div> |
| 64 <div class="origin">Origin</div> | 74 <div class="origin">Origin</div> |
| 65 </div> | 75 </div> |
| 66 </td> | 76 </td> |
| 67 </tr> | 77 </tr> |
| 68 </table> | 78 </table> |
| 69 </header> | 79 </header> |
| 70 <div id="items"> | 80 <div id="items"> |
| 71 <table></table> | 81 <table> |
| 82 <colgroup> |
| 83 <col> |
| 84 <col> |
| 85 <col> |
| 86 </colgroup> |
| 87 <tbody> |
| 88 </tbody> |
| 89 </table> |
| 72 </div> | 90 </div> |
| 73 <footer> | 91 <footer> |
| 74 <a id="reload">Reload</a> page to see effect of filter changes | 92 <a id="reload">Reload</a> page to see effect of filter changes |
| 75 </footer> | 93 </footer> |
| 94 |
| 95 <template> |
| 96 <tr> |
| 97 <td> |
| 98 <div class="request-wrapper"> |
| 99 <div class="url"> </div> |
| 100 <div class="domain"></div> |
| 101 </div> |
| 102 </td> |
| 103 <td> |
| 104 <div class="type"></div> |
| 105 </td> |
| 106 <td> |
| 107 <div class="action-wrapper"> |
| 108 <div class="filter-wrapper"> |
| 109 <div class="filter"> </div> |
| 110 <div class="origin"> </div> |
| 111 </div> |
| 112 </div> |
| 113 </td> |
| 114 </tr> |
| 115 </template> |
| 76 </body> | 116 </body> |
| 77 </html> | 117 </html> |
| LEFT | RIGHT |