style: Add support for the 'all' value of text-decoration-skip-ink.

Differential Revision: https://phabricator.services.mozilla.com/D61184
This commit is contained in:
Jonathan Kew 2020-02-19 20:04:36 +00:00 committed by Emilio Cobos Álvarez
parent 61712d1a03
commit 471e491a89

View file

@ -1010,7 +1010,7 @@ pub enum OverflowWrap {
Anywhere,
}
/// Implements text-decoration-skip-ink which takes the keywords auto | none
/// Implements text-decoration-skip-ink which takes the keywords auto | none | all
///
/// https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-ink-property
#[repr(u8)]
@ -1033,6 +1033,7 @@ pub enum OverflowWrap {
pub enum TextDecorationSkipInk {
Auto,
None,
All,
}
/// Implements type for `text-decoration-thickness` property