mirror of https://github.com/gorhill/uBlock.git
Improve `xml-prune` scriptlet
Related issue: https://github.com/uBlockOrigin/uAssets/issues/21532
This commit is contained in:
parent
a770ed957b
commit
d7063a052f
|
@ -2977,6 +2977,9 @@ function xmlPrune(
|
|||
type === '' && thisArg.responseXML instanceof XMLDocument
|
||||
) {
|
||||
pruneFromDoc(thisArg.responseXML);
|
||||
const serializer = new XMLSerializer();
|
||||
const textout = serializer.serializeToString(thisArg.responseXML);
|
||||
Object.defineProperty(thisArg, 'responseText', { value: textout });
|
||||
return;
|
||||
}
|
||||
if (
|
||||
|
|
Loading…
Reference in New Issue