mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Improve xml-prune
scriptlet
Related feedback: - https://github.com/uBlockOrigin/uBlock-discussions/discussions/792#discussioncomment-6536598
This commit is contained in:
parent
ceb7e0c10b
commit
334a7440f3
1 changed files with 5 additions and 5 deletions
|
@ -2397,7 +2397,11 @@ function xmlPrune(
|
|||
thisArg.addEventListener('readystatechange', function() {
|
||||
if ( thisArg.readyState !== 4 ) { return; }
|
||||
const type = thisArg.responseType;
|
||||
if ( type === 'text' ) {
|
||||
if ( type === 'document' || thisArg.responseXML instanceof XMLDocument ) {
|
||||
pruneFromDoc(thisArg.responseXML);
|
||||
return;
|
||||
}
|
||||
if ( type === 'text' || typeof thisArg.responseText === 'string' ) {
|
||||
const textin = thisArg.responseText;
|
||||
const textout = pruneFromText(textin);
|
||||
if ( textout === textin ) { return; }
|
||||
|
@ -2405,10 +2409,6 @@ function xmlPrune(
|
|||
Object.defineProperty(thisArg, 'responseText', { value: textout });
|
||||
return;
|
||||
}
|
||||
if ( type === 'document' ) {
|
||||
pruneFromDoc(thisArg.response);
|
||||
return;
|
||||
}
|
||||
});
|
||||
return Reflect.apply(target, thisArg, args);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue