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:
Corey Farwell 2015-06-28 23:14:52 -07:00
parent 525d483b82
commit 109e3219a4
5 changed files with 11 additions and 11 deletions

View file

@ -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);