diff options
author | Kunal Mohan <kunalmohan99@gmail.com> | 2020-02-18 00:57:33 +0530 |
---|---|---|
committer | Kunal Mohan <kunalmohan99@gmail.com> | 2020-02-18 00:57:33 +0530 |
commit | 4a3bf52a7c408183d4c3eb7d29a6a528f180315d (patch) | |
tree | e8afee61906108b32f9762cfd61c945febd501a1 /components/script/dom | |
parent | a5b43b7df10cc73d8203f7ee0c3a5e1a1bb1d9f5 (diff) | |
download | servo-4a3bf52a7c408183d4c3eb7d29a6a528f180315d.tar.gz servo-4a3bf52a7c408183d4c3eb7d29a6a528f180315d.zip |
remove option for origin and mirror changes to layout_thread_2020
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/window.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 1abd30ecc4a..227217a2734 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -1548,7 +1548,11 @@ impl Window { /// forces a reflow if `tick` is true. pub fn advance_animation_clock(&self, delta: i32, tick: bool) { self.layout_chan - .send(Msg::AdvanceClockMs(delta, tick)) + .send(Msg::AdvanceClockMs( + delta, + tick, + self.origin().immutable().clone(), + )) .unwrap(); } |