1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-14 00:05:08 +12:00
This commit is contained in:
gorhill 2015-02-22 09:13:08 -05:00
parent 754aa6cd8b
commit ca8d24fb08

View file

@ -449,9 +449,15 @@ vAPI.net.registerListeners = function() {
}
var path = µburi.path;
var pos = path.lastIndexOf('.');
// https://github.com/gorhill/uBlock/issues/862
// If no transposition possible, transpose to `object` as per
// Chromium bug 410382 (see below)
if ( pos === -1 ) {
details.type = 'object';
return;
}
var ext = path.slice(pos) + '.';
if ( '.eot.ttf.otf.svg.woff.woff2.'.indexOf(ext) !== -1 ) {
details.type = 'font';