Add <hr> to HtmlSanitizer whitelist

This commit is contained in:
cketti 2017-10-25 04:13:52 +02:00
parent 27bc562ebe
commit 77f821cbbe
2 changed files with 10 additions and 1 deletions

View file

@ -13,7 +13,7 @@ public class HtmlSanitizer {
HtmlSanitizer() {
Whitelist whitelist = Whitelist.relaxed()
.addTags("font")
.addTags("font", "hr")
.addAttributes("table", "align", "bgcolor", "border", "cellpadding", "cellspacing", "width")
.addAttributes(":all", "class", "style", "id")
.addProtocols("img", "src", "http", "https", "cid", "data");

View file

@ -158,4 +158,13 @@ public class HtmlSanitizerTest {
"<tr><td>Hmailserver service shutdown:</td><td>Ok</td></tr>" +
"</tbody></table></body></html>", toCompactString(result));
}
@Test
public void shouldKeepHrTags() throws Exception {
String html = "<html><head></head><body>one<hr>two<hr />three</body></html>";
Document result = htmlSanitizer.sanitize(html);
assertEquals("<html><head></head><body>one<hr>two<hr>three</body></html>", toCompactString(result));
}
}