Check that remove functionality is working as expected.
Test that a remove filter using an ID selector removes its target.
abptestpages.org###remove-id {remove: true;}
Test that a remove filter using an ID selector with two curly braces removes its target.
abptestpages.org##div[id='{{remove-id}}'] {remove: true;}
Test that a remove filter using a class selector removes its target.
abptestpages.org##.remove-class {remove: true;}
Test that a remove filter using a descendant selector removes its target.
abptestpages.org##.testcase-area > .remove-descendant {remove: true;}
Test that a remove filter using a sibling selector removes its target.
abptestpages.org##.testcase-examplecontent + .remove-sibling {remove: true;}
Test that a remove filter using an attribute selector removes its target.
abptestpages.org##div[height="40"][width="40"] {remove: true;}
Test that a remove filter using an attribute selector removes its target.
abptestpages.org##div[href="http://testcase-attribute-remove.com/"] {remove: true;}
Test that a remove filter using an attribute selector removes its target.
abptestpages.org##div[style="width: 42px;"] {remove: true;}
Test that a remove filter using a starts with selector removes its target.
abptestpages.org##div[href^="http://testcase-startswith-remove.com/"] {remove: true;}
Test that a remove filter using a starts with selector removes its target.
abptestpages.org##div[style^="width: 43px;"] {remove: true;}
Test that a remove filter using a ends with selector removes its target.
abptestpages.org##div[style$="width: 44px;"] {remove: true;}
Test that a remove filter using a contains selector removes its target.
abptestpages.org##div[style*="width: 45px;"] {remove: true;}