| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 <!DOCTYPE html> | 
|  | 2 <!-- | 
|  | 3   - This file is part of Adblock Plus <http://adblockplus.org/>, | 
|  | 4   - Copyright (C) 2006-2015 Eyeo GmbH | 
|  | 5   - | 
|  | 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 | 
|  | 8   - published by the Free Software Foundation. | 
|  | 9   - | 
|  | 10   - Adblock Plus is distributed in the hope that it will be useful, | 
|  | 11   - but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 12   - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 13   - GNU General Public License for more details. | 
|  | 14   - | 
|  | 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/>. | 
|  | 17   --> | 
|  | 18 | 
|  | 19 <html> | 
|  | 20   <head> | 
|  | 21     <link type="text/css" rel="stylesheet" href="skin/devtools-panel.css"> | 
|  | 22     <script src="ext/common.js"></script> | 
|  | 23     <script src="ext/devtools.js"></script> | 
|  | 24     <script src="devtools-panel.js"></script> | 
|  | 25   </head> | 
|  | 26   <body> | 
|  | 27     <header> | 
|  | 28       <table> | 
|  | 29         <tr> | 
|  | 30           <td colspan="2"> | 
|  | 31             Show | 
|  | 32             <select id="filter-state"> | 
|  | 33               <option value="">all</option> | 
|  | 34               <option>blocked</option> | 
|  | 35               <option>whitelisted</option> | 
|  | 36             </select> | 
|  | 37             items of | 
|  | 38             <select id="filter-type"> | 
|  | 39               <option value="">any</option> | 
|  | 40               <option>SUBDOCUMENT</option> | 
|  | 41               <option>IMAGE</option> | 
|  | 42               <option>STYLESHEET</option> | 
|  | 43               <option>SCRIPT</option> | 
|  | 44               <option>OBJECT</option> | 
|  | 45               <option>XMLHTTPREQUEST</option> | 
|  | 46               <option>POPUP</option> | 
|  | 47               <option>ELEMHIDE</option> | 
|  | 48               <option>OTHER</option> | 
|  | 49             </select> | 
|  | 50             type | 
|  | 51           </td> | 
|  | 52         </tr> | 
|  | 53         <tr> | 
|  | 54           <td> | 
|  | 55             <div class="request-wrapper"> | 
|  | 56               <div class="url">Request</div> | 
|  | 57               <div class="domain">Document domain</div> | 
|  | 58               <div class="type">Type</div> | 
|  | 59             </div> | 
|  | 60           </td> | 
|  | 61           <td> | 
|  | 62             <div class="filter-wrapper"> | 
|  | 63               <div class="filter">Filter</div> | 
|  | 64               <div class="origin">Origin</div> | 
|  | 65             </div> | 
|  | 66           </td> | 
|  | 67         </tr> | 
|  | 68       </table> | 
|  | 69     </header> | 
|  | 70     <div id="items"> | 
|  | 71       <table></table> | 
|  | 72     </div> | 
|  | 73     <footer> | 
|  | 74       <a id="reload">Reload</a> page to see effect of filter changes | 
|  | 75     </footer> | 
|  | 76   </body> | 
|  | 77 </html> | 
| OLD | NEW | 
|---|