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