I don't understand why there are two properties that seem to do the same thing, yet their interrelation does not appear to be defined within the spec.
http://dev.w3.org/csswg/css-text-3/#word-break-property
http://dev.w3.org/csswg/css-text-3/#overflow-wrap-property
For example, if I want text wrapped as per How do I wrap text in a pre tag?, and some lines contain strings with no spaces (which seems to make Chrome think they're non-breakable (even if they do have commas and such)), do I want to use word-break: break-all
or word-wrap: break-word
, in addition to white-space: pre-wrap
?