Check that inline CSS inversion functionality is working as expected.
Test that an inline CSS filter using a :not(:-abp-properties()) selector changes target background from red to green.
abptestpages.org#?#.inline-css-inv-properties:not(:-abp-properties(width: 147px)) {background-color: #0dc74b;}
Test that an inline CSS filter using a :not(:-abp-has()) selector changes target background from red to green.
abptestpages.org#?#.inline-css-inv-has:not(:-abp-has(span.inline-css-inv-has-not-hide)) {background-color: #0dc74b;}
Test that an inline CSS filter using a not(:-abp-contains()) selector changes target background from red to green.
abptestpages.org#?#.inline-css-inv-contains:not(span:-abp-contains(example-content)) {background-color: #0dc74b;}
Test that an inline CSS filter using several of the extended selectors and not() selector changes target background from red to green.
abptestpages.org#?#.inline-css-inv-chained-parent:not(:-abp-has(> div:-abp-properties(width: 148px))) {background-color: #0dc74b;}
Test that an inline CSS filter is case insensitive and still changes target background from red to green.
abptestpages.org#?#.inline-css-inv-case:not(:-abp-properties(WiDtH: 149px)) {background-color: #0dc74b;}
Test that an inline CSS filter using wildcards still not changes target background from red to green.
abptestpages.org#?#.inline-css-inv-wildcard:not(:-abp-properties(cursor:*)) {background-color: #0dc74b;}
Test that an inline CSS filter using regular expressions still changes target background from red to green.
abptestpages.org#?#.inline-css-inv-regex:not(:-abp-properties(/width: 15[1-5]px;/)) {background-color: #0dc74b;}
Test that an inline CSS filter using regular expressions still changes target background from red to green.
abptestpages.org#?#.inline-css-inv-contains-regex:not(span:-abp-contains(/example-contentregex\d/)) {background-color: #0dc74b;}