Take forms out of the RSS reader feed.

This commit is contained in:
wolfbeast 2018-02-05 12:32:05 +01:00 committed by Roy Tam
commit df6fcd35a7

View file

@ -637,7 +637,8 @@ TextConstruct.prototype = {
else
return null;
return this.parserUtils.parseFragment(this.text, 0, isXML,
let flags = Ci.nsIParserUtils.SanitizerDropForms;
return this.parserUtils.parseFragment(this.text, flags, isXML,
this.base, element);
},