mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Parse -abp-has as declarative if possible
With the new csstree-based parser, it should now be safe to parse `-abp-has` as declarative. There are over a hundred such cosmetic filters in EasyList, and we want to have these filters declaratively enforced whenever possible in order to let the browser do the work natively rather than rely on JS code.
This commit is contained in:
parent
5d97353287
commit
30bd6c7bb8
2 changed files with 1 additions and 0 deletions
|
@ -1425,6 +1425,7 @@ Parser.prototype.SelectorCompiler = class {
|
|||
if ( match === ':-abp-contains(' ) {
|
||||
return ':has-text(';
|
||||
} else if ( match === ':-abp-has(' ) {
|
||||
this.asProcedural = false;
|
||||
return ':has(';
|
||||
}
|
||||
return match;
|
||||
|
|
Loading…
Reference in a new issue