mirror of https://github.com/gorhill/uBlock.git
This commit is contained in:
parent
2d1f15eac6
commit
5eff4a027a
|
@ -117,6 +117,7 @@ const fromCosmeticFilter = function(details) {
|
|||
const prefix = match[0];
|
||||
const exception = prefix.charAt(1) === '@';
|
||||
const selector = details.rawFilter.slice(prefix.length);
|
||||
const isHtmlFilter = prefix.endsWith('^');
|
||||
|
||||
// The longer the needle, the lower the number of false positives.
|
||||
const needle = selector.match(/\w+/g).reduce(function(a, b) {
|
||||
|
@ -182,6 +183,9 @@ const fromCosmeticFilter = function(details) {
|
|||
continue;
|
||||
}
|
||||
|
||||
// Do not confuse cosmetic filters with HTML ones.
|
||||
if ( (fargs[0] === 64) !== isHtmlFilter ) { continue; }
|
||||
|
||||
switch ( fargs[0] ) {
|
||||
// Lowly generic cosmetic filters
|
||||
case 0: // simple id-based
|
||||
|
|
Loading…
Reference in New Issue