Check that inline CSS functionality is working as expected.
Test that an inline css filter using an ID selector changes target background from red to green.
abptestpages.org###inline-css-id {background-color: #0dc74b;}
Test that an inline css filter using an ID selector with two curly braces changes target background from red to green.
abptestpages.org##div[id='{{inline-css-id}}'] {background-color: #0dc74b;}
Test that an inline css filter using a class selector changes target background from red to green.
abptestpages.org##.inline-css-class {background-color: #0dc74b;}
Test that an inline css filter using a descendant selector changes target background from red to green.
abptestpages.org##.testcase-area > .inline-css-descendant {background-color: #0dc74b;}
Test that an inline css filter using a sibling selector changes target background from red to green.
abptestpages.org##.testcase-examplecontent + .inline-css-sibling {background-color: #0dc74b;}
Test that an inline css filter using an attribute selector changes target background from red to green.
abptestpages.org##div[height="50"][width="50"] {background-color: #0dc74b;}
Test that an inline css filter using an attribute selector changes target background from red to green.
abptestpages.org##div[href="http://testcase-attribute-inline-css.com/"] {background-color: #0dc74b;}
Test that an inline css filter using an attribute selector changes target background from red to green.
abptestpages.org##div[style="width: 52px;"] {background-color: #0dc74b;}
Test that an inline css filter using a starts with selector changes target background from red to green.
abptestpages.org##div[href^="http://testcase-startswith-inline-css.com/"] {background-color: #0dc74b;}
Test that an inline css filter using a starts with selector changes target background from red to green.
abptestpages.org##div[style^="width: 53px;"] {background-color: #0dc74b;}
Test that an inline css filter using a ends with selector changes target background from red to green.
abptestpages.org##div[style$="width: 54px;"] {background-color: #0dc74b;}
Test that an inline css filter using a contains selector changes target background from red to green.
abptestpages.org##div[style*="width: 55px;"] {background-color: #0dc74b;}