This fixes a bug when using word-break: break-all where HTML Special Entities were not being decoded.
The change decodes all HTML Special Entities during initial parsing in HtmlParser.ParseDocument so ParseToWords technically doesn't need to decode them anymore but this works around the special cases there for WordBreak == CssConstants.BreakAll.
This fixes a bug when using
word-break: break-all
where HTML Special Entities were not being decoded.The change decodes all HTML Special Entities during initial parsing in
HtmlParser.ParseDocument
soParseToWords
technically doesn't need to decode them anymore but this works around the special cases there forWordBreak == CssConstants.BreakAll
.Also included
entities for decoding.
/
and