mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Prefer HTTPS when linking to GitHub Pages
This commit was generated using the following commands: ``` find . -iname "*.webidl" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)github.io/https:\1github.io/g' ``` ``` find . -iname "*.rs" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)github.io/https:\1github.io/g' ```
This commit is contained in:
parent
525d483b82
commit
109e3219a4
5 changed files with 11 additions and 11 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue