1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-02 17:02:40 +01:00
This commit is contained in:
Raymond Hill 2018-03-07 06:28:26 -05:00
parent a470c119aa
commit 333c6f60fb
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -181,14 +181,6 @@ var fromCosmeticFilter = function(details) {
found = prefix + selector; found = prefix + selector;
} }
break; break;
case 1: // id-based
if (
fargs[2] === selector.slice(1) &&
selector.charAt(0) === '#'
) {
found = prefix + selector;
}
break;
case 2: // class-based case 2: // class-based
if ( if (
fargs[1] === selector.slice(1) && fargs[1] === selector.slice(1) &&
@ -197,11 +189,9 @@ var fromCosmeticFilter = function(details) {
found = prefix + selector; found = prefix + selector;
} }
break; break;
case 3: case 1: // id-based
if ( case 3: // class-based
fargs[2] === selector.slice(1) && if ( fargs[2] === selector ) {
selector.charAt(0) === '.'
) {
found = prefix + selector; found = prefix + selector;
} }
break; break;