Update references to Web Animations spec

This commit is contained in:
Brian Birtles 2017-12-15 16:21:26 -06:00
parent e631d167bf
commit 150db42ef6
2 changed files with 6 additions and 6 deletions

View file

@ -262,7 +262,7 @@ impl AnimatedProperty {
% for prop in data.longhands:
% if prop.animatable:
AnimatedProperty::${prop.camel_case}(ref from, ref to) => {
// https://w3c.github.io/web-animations/#discrete-animation-type
// https://drafts.csswg.org/web-animations/#discrete-animation-type
% if prop.animation_value_type == "discrete":
let value = if progress < 0.5 { from.clone() } else { to.clone() };
% else:
@ -2833,7 +2833,7 @@ impl ComputeSquaredDistance for AnimatedFilterList {
///
/// border-top-color, border-color, border-top, border
///
/// [property-order] https://w3c.github.io/web-animations/#calculating-computed-keyframes
/// [property-order] https://drafts.csswg.org/web-animations/#calculating-computed-keyframes
#[cfg(feature = "gecko")]
pub fn compare_property_priority(a: &PropertyId, b: &PropertyId) -> cmp::Ordering {
match (a.as_shorthand(), b.as_shorthand()) {