Stylo: Change mask-repeat initial value from no-repeat to repeat.

This commit is contained in:
cku 2017-05-15 15:29:56 +08:00
parent 5cd8265f9a
commit 373307f9c2

View file

@ -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>