author | cku <cku@mozilla.com> |
Mon, 15 May 2017 19:42:57 -0500 | |
changeset 358501 | 1b51aa9afd06b56998da103ae853db5cac04ad8f |
parent 358500 | 2dc612bec44b88be0bf484a0e0b3901ada89481e |
child 358502 | 3c20408d22193e9179d9b092b65f5ea9af54deaf |
push id | 31827 |
push user | cbook@mozilla.com |
push date | Tue, 16 May 2017 10:34:19 +0000 |
treeherder | mozilla-central@49365d675cbb [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | heycam |
milestone | 55.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
servo/components/style/properties/longhand/svg.mako.rs | file | annotate | diff | comparison | revisions |
--- a/servo/components/style/properties/longhand/svg.mako.rs +++ b/servo/components/style/properties/longhand/svg.mako.rs @@ -76,22 +76,22 @@ pub use properties::longhands::background_repeat::single_value::parse; pub use properties::longhands::background_repeat::single_value::SpecifiedValue; pub use properties::longhands::background_repeat::single_value::computed_value; pub use properties::longhands::background_repeat::single_value::RepeatKeyword; use properties::longhands::background_repeat::single_value; #[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> % for (axis, direction) in [("x", "Horizontal"), ("y", "Vertical")]: ${helpers.predefined_type("mask-position-" + axis, "position::" + direction + "Position", products="gecko", extra_prefixes="webkit", initial_value="computed::LengthOrPercentage::zero()", initial_specified_value="specified::PositionComponent::Center",