Add <hr> to HtmlSanitizer whitelist
This commit is contained in:
parent
27bc562ebe
commit
77f821cbbe
2 changed files with 10 additions and 1 deletions
|
@ -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");
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue