From 4c51624bcfa6921e46b6ccf728b4306ffa0afc5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 26 May 2018 23:44:50 +0200 Subject: [PATCH] style: Add a FIXME comment which I think reveals a bug but I haven't confirmed it. Bug: 1459403 Reviewed-by: hiro MozReview-Commit-ID: DgCfqA5TNzP --- components/style/properties/helpers/animated_properties.mako.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/style/properties/helpers/animated_properties.mako.rs b/components/style/properties/helpers/animated_properties.mako.rs index b20889f0db6..3178a14add6 100644 --- a/components/style/properties/helpers/animated_properties.mako.rs +++ b/components/style/properties/helpers/animated_properties.mako.rs @@ -2478,6 +2478,8 @@ impl Animate for ComputedScale { let from = ComputedScale::resolve(self); let to = ComputedScale::resolve(other); + // FIXME(emilio, bug 1464791): why does this do something different than + // Scale3D / TransformOperation::Scale3D? if procedure == Procedure::Add { // scale(x1,y1,z1)*scale(x2,y2,z2) = scale(x1*x2, y1*y2, z1*z2) return Ok(Scale::Scale3D(from.0 * to.0, from.1 * to.1, from.2 * to.2));