Index: test/filterClasses.js |
=================================================================== |
--- a/test/filterClasses.js |
+++ b/test/filterClasses.js |
@@ -426,16 +426,24 @@ |
// Comment filters |
test.equal(Filter.normalize(" ! fo o## bar "), |
"! fo o## bar"); |
// Element hiding filters |
test.equal(Filter.normalize(" domain.c om## # sele ctor "), |
"domain.com### sele ctor"); |
+ // Element hiding emulation filters |
+ test.equal(Filter.normalize(" domain.c om#?# # sele ctor "), |
+ "domain.com#?## sele ctor"); |
+ |
+ // Element hiding exception filters |
+ test.equal(Filter.normalize(" domain.c om#@# # sele ctor "), |
+ "domain.com#@## sele ctor"); |
+ |
// Regular filters |
let normalized = Filter.normalize( |
" b$l a$sitekey= foo ,domain= do main.com |foo .com,c sp= c s p " |
); |
test.equal( |
normalized, |
"b$la$sitekey=foo,domain=domain.com|foo.com,csp=c s p" |
); |