mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +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,
|
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
|
/// https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-ink-property
|
||||||
#[repr(u8)]
|
#[repr(u8)]
|
||||||
|
@ -1033,6 +1033,7 @@ pub enum OverflowWrap {
|
||||||
pub enum TextDecorationSkipInk {
|
pub enum TextDecorationSkipInk {
|
||||||
Auto,
|
Auto,
|
||||||
None,
|
None,
|
||||||
|
All,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Implements type for `text-decoration-thickness` property
|
/// Implements type for `text-decoration-thickness` property
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue