1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-19 19:52:51 +02:00

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 377ecf3f1d
commit bcede6f938
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

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