From 8f152563dddfa1f8750f48a084e84c0eabc51726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 22 Jul 2017 01:32:05 +0200 Subject: [PATCH] stylo: Stop claiming to support unstyled children traversals for throttled animations. The whole concept made me laugh a bit actually :) MozReview-Commit-ID: 1KJrUYuaHxL --- ports/geckolib/glue.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ports/geckolib/glue.rs b/ports/geckolib/glue.rs index bdbf856203e..be1cb1005ef 100644 --- a/ports/geckolib/glue.rs +++ b/ports/geckolib/glue.rs @@ -275,8 +275,7 @@ pub extern "C" fn Servo_TraverseSubtree(root: RawGeckoElementBorrowed, (Root::Normal, Restyle::ForThrottledAnimationFlush) => TraversalFlags::empty(), (Root::UnstyledChildrenOnly, Restyle::Normal) | - (Root::UnstyledChildrenOnly, Restyle::ForNewlyBoundElement) | - (Root::UnstyledChildrenOnly, Restyle::ForThrottledAnimationFlush) + (Root::UnstyledChildrenOnly, Restyle::ForNewlyBoundElement) => UNSTYLED_CHILDREN_ONLY, (Root::Normal, Restyle::ForCSSRuleChanges) => FOR_CSS_RULE_CHANGES, (Root::Normal, Restyle::ForReconstruct) => FOR_RECONSTRUCT,