Check that inline CSS functionality with extended selectors is working as expected.
Test that an inline CSS filter using a :-abp-properties() selector changes target background from red to green.
abptestpages.org#?#div:-abp-properties(width: 56px) {background-color: #0dc74b;}
Test that an inline CSS filter using a :-abp-has() selector changes target background from red to green.
abptestpages.org#?#div:-abp-has(>div>span.inline-css-abp-has) {background-color: #0dc74b;}
Test that an inline CSS filter using a :has() selector changes target background from red to green.
abptestpages.org#?#div:has(>div>span.inline-css-has) {background-color: #0dc74b;}
Test that an inline CSS filter using a :-abp-contains() selector changes target background from red to green.
abptestpages.org#?#span:-abp-contains(.inline-css-contains-target) {background-color: #0dc74b;}
Test that an inline CSS filter using a :xpath() selector changes target background from red to green.
abptestpages.org#?#span:xpath(//*[@id="basic-xpath-usage-with-inline-css-fail"]) {background-color: #0dc74b;}
Test that an inline CSS filter using a :-has-text() selector changes target background from red to green.
abptestpages.org#?#span:has-text(inline-css-has-text) {background-color: #0dc74b;}
Test that an inline CSS filter using several of the extended selectors changes target background from red to green.
abptestpages.org#?#div:-abp-has(> div:-abp-properties(width: 57px)) {background-color: #0dc74b;}
Test that an inline CSS filter is case insensitive and still changes target background from red to green.
abptestpages.org#?#div:-abp-properties(WiDtH: 58px) {background-color: #0dc74b;}
Test that an inline CSS filter using wildcards still changes target background from red to green.
abptestpages.org#?#.inline-css-wildcard:-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#?#div:-abp-properties(/width: 14[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#?#div > div:-abp-contains(/inline-css-containsregex\d/) {background-color: #0dc74b;}