Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Stylo: Change mask-repeat initial value from no-repeat to repeat.
  • Loading branch information
cku committed May 15, 2017
1 parent 5cd8265 commit 373307f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/style/properties/longhand/svg.mako.rs
Expand Up @@ -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>

Expand Down

0 comments on commit 373307f

Please sign in to comment.