style: Add parsing of the loose|normal|strict values of the CSS line-break property.

Differential Revision: https://phabricator.services.mozilla.com/D30785
This commit is contained in:
Jonathan Kew 2019-05-20 20:46:28 +00:00 committed by Emilio Cobos Álvarez
parent 0dc70cf7f2
commit 8ee516b681

View file

@ -1024,10 +1024,9 @@ pub enum WordBreak {
#[allow(missing_docs)]
pub enum LineBreak {
Auto,
/// TODO: additional values not yet implemented
/// Loose,
/// Normal,
/// Strict,
Loose,
Normal,
Strict,
Anywhere,
}