diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/style/properties/longhand/svg.mako.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/properties/longhand/svg.mako.rs b/components/style/properties/longhand/svg.mako.rs index 540c522c09d..bd1a2b520a1 100644 --- a/components/style/properties/longhand/svg.mako.rs +++ b/components/style/properties/longhand/svg.mako.rs @@ -81,12 +81,12 @@ ${helpers.single_keyword("mask-mode", #[inline] pub fn get_initial_value() -> computed_value::T { - computed_value::T(RepeatKeyword::NoRepeat, RepeatKeyword::NoRepeat) + computed_value::T(RepeatKeyword::Repeat, RepeatKeyword::Repeat) } #[inline] pub fn get_initial_specified_value() -> SpecifiedValue { - SpecifiedValue::Other(RepeatKeyword::NoRepeat, None) + SpecifiedValue::Other(RepeatKeyword::Repeat, None) } </%helpers:vector_longhand> |