Skip to content

Commit

Permalink
Merge pull request #409 from vivliostyle/support_word-break_break-word
Browse files Browse the repository at this point in the history
Add support for `break-word` value of `word-break` property
  • Loading branch information
kwkbtr committed Feb 2, 2018
2 parents 4f9961f + d14e9c4 commit 7b2d80e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,9 @@
- Support `column-fill` property
- <https://github.com/vivliostyle/vivliostyle.js/pull/387>
- Spec: [CSS Multi-column Layout Module Level 1 - column-fill](https://drafts.csswg.org/css-multicol/#cf)
- Add support for `break-word` value of `word-break` property
- <https://github.com/vivliostyle/vivliostyle.js/pull/409>
- Spec: [CSS Text Module Level 3 - Breaking Rules for Letters: the word-break property](https://www.w3.org/TR/css-text-3/#word-break-property)

### Changed

Expand Down
2 changes: 1 addition & 1 deletion resources/validation.txt
Expand Up @@ -335,7 +335,7 @@ overflow-wrap = normal | break-word;
[moz]tab-size = NNEG_INT | NNEG_LENGTH;
[moz,ms]text-align-last = auto | start | end | left | right | center | justify;
[ms]text-justify = auto | none | inter-word | inter-character | inter-ideograph /* specified in UA stylesheet for IE */;
[ms]word-break = normal | keep-all | break-all;
[ms]word-break = normal | keep-all | break-all | break-word;
[ms]word-wrap = normal | break-word;

/* CSS Text Decoration */
Expand Down

0 comments on commit 7b2d80e

Please sign in to comment.