Fix validating argument for :not() as procedural

Related feedback:
- https://github.com/uBlockOrigin/uBlock-issues/issues/2228#issuecomment-1234248802
This commit is contained in:
Raymond Hill 2022-09-01 09:42:48 -04:00
parent 14d4340edd
commit 198689f618
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -1615,6 +1615,7 @@ Parser.prototype.SelectorCompiler = class {
if ( this.querySelectable(s) === false ) {
return this.compileProcedural(s);
}
return s;
}
compileUpwardArgument(s) {