Left: | ||
Right: |
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-present eyeo GmbH | 4 - Copyright (C) 2006-present 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, |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 <td> | 62 <td> |
63 <div class="filter-wrapper"> | 63 <div class="filter-wrapper"> |
64 <div class="filter">Filter</div> | 64 <div class="filter">Filter</div> |
65 <div class="origin">Origin</div> | 65 <div class="origin">Origin</div> |
66 </div> | 66 </div> |
67 </td> | 67 </td> |
68 </tr> | 68 </tr> |
69 </table> | 69 </table> |
70 </header> | 70 </header> |
71 <div id="items"> | 71 <div id="items"> |
72 <table> | 72 <table class="foreground"> |
73 <colgroup> | 73 <colgroup> |
74 <col> | 74 <col> |
75 <col> | 75 <col> |
76 <col> | 76 <col> |
77 </colgroup> | 77 </colgroup> |
78 <tbody> | 78 <tbody> |
79 <tr id="background-items"> | 79 </tbody> |
Thomas Greiner
2018/02/28 18:18:08
This implementation appears to cause a bit of over
a.giammarchi
2018/03/02 09:38:21
I've missed this one ... yeah, it was somehow my f
| |
80 </table> | |
81 <table class="background"> | |
82 <colgroup> | |
83 <col> | |
84 <col> | |
85 <col> | |
86 </colgroup> | |
87 <tbody> | |
88 <tr> | |
80 <td colspan="3">Requests from background tabs</td> | 89 <td colspan="3">Requests from background tabs</td> |
81 </tr> | 90 </tr> |
82 </tbody> | 91 </tbody> |
83 </table> | 92 </table> |
84 </div> | 93 </div> |
85 <footer> | 94 <footer> |
86 <a id="reload">Reload</a> page to see effect of filter changes | 95 <a id="reload">Reload</a> page to see effect of filter changes |
87 </footer> | 96 </footer> |
88 | 97 |
89 <template> | 98 <template> |
(...skipping 12 matching lines...) Expand all Loading... | |
102 <div class="filter-wrapper"> | 111 <div class="filter-wrapper"> |
103 <div class="filter"> </div> | 112 <div class="filter"> </div> |
104 <div class="origin"> </div> | 113 <div class="origin"> </div> |
105 </div> | 114 </div> |
106 </div> | 115 </div> |
107 </td> | 116 </td> |
108 </tr> | 117 </tr> |
109 </template> | 118 </template> |
110 </body> | 119 </body> |
111 </html> | 120 </html> |
LEFT | RIGHT |