mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
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:
parent
61712d1a03
commit
471e491a89
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue