From 471e491a8980d7ccd876b272041a53e1e8ff243e Mon Sep 17 00:00:00 2001 From: Jonathan Kew Date: Wed, 19 Feb 2020 20:04:36 +0000 Subject: [PATCH] style: Add support for the 'all' value of text-decoration-skip-ink. Differential Revision: https://phabricator.services.mozilla.com/D61184 --- components/style/values/specified/text.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/style/values/specified/text.rs b/components/style/values/specified/text.rs index 0228d5123ce..1c231b0a9cc 100644 --- a/components/style/values/specified/text.rs +++ b/components/style/values/specified/text.rs @@ -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