aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2020-05-07 18:37:18 +0200
committerMartin Robinson <mrobinson@igalia.com>2020-05-12 10:22:14 +0200
commit3b0619aedd967238091367f6e03dabf262e116ad (patch)
treeb2427a9f19befc3017860053d3a416fda3d87275 /components/script/lib.rs
parentaa9f16ce45f6eb22ffd5bc6a10802ded4cc2319b (diff)
downloadservo-3b0619aedd967238091367f6e03dabf262e116ad.tar.gz
servo-3b0619aedd967238091367f6e03dabf262e116ad.zip
Move most animation processing to script
This is preparation for sharing this code with layout_2020 and implementing selective off-the-main-thread animations. We still look for nodes not in the flow tree in the layout thread.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index cd73045456a..886a76e9c95 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -48,6 +48,7 @@ extern crate servo_atoms;
extern crate style;
mod animation_timeline;
+mod animations;
#[warn(deprecated)]
#[macro_use]
mod task;