1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00
gorhill 2017-03-16 19:31:14 -04:00
parent d7f751d42b
commit 64c92a96a3
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -98,6 +98,8 @@ vAPI.matchesProp = (function() {
return 'mozMatchesSelector';
} else if ( typeof docElem.webkitMatchesSelector === 'function' ) {
return 'webkitMatchesSelector';
} else if ( typeof docElem.msMatchesSelector === 'function' ) {
return 'msMatchesSelector';
}
}
return 'matches';