| OLD | NEW |
| 1 title=Adblock Plus filters explained | 1 title=Adblock Plus filters explained |
| 2 | 2 |
| 3 <head> | 3 <head> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 #content | 5 #content |
| 6 { | 6 { |
| 7 max-width: none; | 7 max-width: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 canvas | 10 canvas |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 <p> | 714 <p> |
| 715 {{s111 Not active on:}} | 715 {{s111 Not active on:}} |
| 716 <ul class="example-list"> | 716 <ul class="example-list"> |
| 717 <li>{{s121 All other domains, including:}}</li> | 717 <li>{{s121 All other domains, including:}}</li> |
| 718 <li><code>http://example.net/</code></li> | 718 <li><code>http://example.net/</code></li> |
| 719 </ul> | 719 </ul> |
| 720 </p> | 720 </p> |
| 721 </td> | 721 </td> |
| 722 </tr> | 722 </tr> |
| 723 <tr> | 723 <tr> |
| 724 <td><code>example.com,~mail.example.com#selector</code></td> | 724 <td><code>example.com,~mail.example.com##selector</code></td> |
| 725 <td> | 725 <td> |
| 726 <p> | 726 <p> |
| 727 {{s109 Active on:}} | 727 {{s109 Active on:}} |
| 728 <ul class="example-list"> | 728 <ul class="example-list"> |
| 729 <li><code>http://example.com/</code></li> | 729 <li><code>http://example.com/</code></li> |
| 730 <li><code>https://adverts.example.com/</code></li> | 730 <li><code>https://adverts.example.com/</code></li> |
| 731 </ul> | 731 </ul> |
| 732 </p> | 732 </p> |
| 733 <p> | 733 <p> |
| 734 {{s111 Not active on:}} | 734 {{s111 Not active on:}} |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 <tr> | 846 <tr> |
| 847 <td><code>example.com#?#div > img:-abp-properties(width:*px;height:250px;
)</code></td> | 847 <td><code>example.com#?#div > img:-abp-properties(width:*px;height:250px;
)</code></td> |
| 848 <td>{{ abp-properties-example1 By using a wildcard <code>*</code>, this filt
er matches an <code>img</code> whose CSS style properties have a <code>width</co
de> specified in pixels and a <code>height</code> of 250 pixels }}</td> | 848 <td>{{ abp-properties-example1 By using a wildcard <code>*</code>, this filt
er matches an <code>img</code> whose CSS style properties have a <code>width</co
de> specified in pixels and a <code>height</code> of 250 pixels }}</td> |
| 849 </tr> | 849 </tr> |
| 850 <tr> | 850 <tr> |
| 851 <td><code>example.com#?#div > img:-abp-properties(/width: 3[2-8]px;/)</co
de></td> | 851 <td><code>example.com#?#div > img:-abp-properties(/width: 3[2-8]px;/)</co
de></td> |
| 852 <td>{{ abp-properties-example2 By using a regular expression, this filter ma
tches an <code>img</code> whose CSS style properties have a <code>width</code> b
etween 32 and 38 pixels }}</td> | 852 <td>{{ abp-properties-example2 By using a regular expression, this filter ma
tches an <code>img</code> whose CSS style properties have a <code>width</code> b
etween 32 and 38 pixels }}</td> |
| 853 </tr> | 853 </tr> |
| 854 </table> | 854 </table> |
| 855 | 855 |
| OLD | NEW |