diff options
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 8256051d9a0..83cf3e9b4d5 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -475,7 +475,7 @@ impl<'a> WindowMethods for &'a Window { base64_atob(atob) } - /// http://w3c.github.io/animation-timing/#dom-windowanimationtiming-requestanimationframe + /// https://w3c.github.io/animation-timing/#dom-windowanimationtiming-requestanimationframe fn RequestAnimationFrame(self, callback: Rc<FrameRequestCallback>) -> i32 { let doc = self.Document(); @@ -487,7 +487,7 @@ impl<'a> WindowMethods for &'a Window { doc.r().request_animation_frame(Box::new(callback)) } - /// http://w3c.github.io/animation-timing/#dom-windowanimationtiming-cancelanimationframe + /// https://w3c.github.io/animation-timing/#dom-windowanimationtiming-cancelanimationframe fn CancelAnimationFrame(self, ident: i32) { let doc = self.Document(); doc.r().cancel_animation_frame(ident); |