Check that basic element hiding functionality is working as expected.
Test that an element hiding filter using an ID selector hides its target.
abptestpages.org###eh-id
Test that an element hiding filter using an ID selector with two curly braces hides its target.
abptestpages.org##div[id='{{eh-id}}']
Test that an element hiding filter using a class selector hides its target.
abptestpages.org##.eh-class
Test that an element hiding filter using a descendant selector hides its target.
abptestpages.org##.testcase-area > .eh-descendant
Test that an element hiding filter using a sibling selector hides its target.
abptestpages.org##.testcase-examplecontent + .eh-sibling
Test that an element hiding filter using an attribute selector hides its target.
abptestpages.org##div[height="100"][width="100"]
Test that an element hiding filter using an attribute selector hides its target.
abptestpages.org##div[href="http://testcase-attribute.com/"]
Test that an element hiding filter using an attribute selector hides its target.
abptestpages.org##div[style="width: 200px;"]
Test that an element hiding filter using a starts with selector hides its target.
abptestpages.org##div[href^="http://testcase-startswith.com/"]
Test that an element hiding filter using a starts with selector hides its target.
abptestpages.org##div[style^="width: 201px;"]
Test that an element hiding filter using a ends with selector hides its target.
abptestpages.org##div[style$="width: 202px;"]
Test that an element hiding filter using a contains selector hides its target.
abptestpages.org##div[style*="width: 203px;"]