Improve `xml-prune` scriptlet

Related issue:
https://github.com/uBlockOrigin/uAssets/issues/21532
This commit is contained in:
Raymond Hill 2023-12-22 10:15:37 -05:00
parent a770ed957b
commit d7063a052f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 3 additions and 0 deletions

View File

@ -2977,6 +2977,9 @@ function xmlPrune(
type === '' && thisArg.responseXML instanceof XMLDocument type === '' && thisArg.responseXML instanceof XMLDocument
) { ) {
pruneFromDoc(thisArg.responseXML); pruneFromDoc(thisArg.responseXML);
const serializer = new XMLSerializer();
const textout = serializer.serializeToString(thisArg.responseXML);
Object.defineProperty(thisArg, 'responseText', { value: textout });
return; return;
} }
if ( if (