aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/document.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-06-29 00:41:00 -0600
committerbors-servo <metajack+bors@gmail.com>2015-06-29 00:41:00 -0600
commit342ea7a44b26f9cc701b2a10757c4ac0aec93aeb (patch)
tree903186c335fc2246993c6ab04c00505d07ca9994 /components/script/dom/document.rs
parent525d483b822692a86722fa1f53b0dd08bdf47e9f (diff)
parent109e3219a46ff65f38ec8ff50abb0d599651f7cb (diff)
downloadservo-342ea7a44b26f9cc701b2a10757c4ac0aec93aeb.tar.gz
servo-342ea7a44b26f9cc701b2a10757c4ac0aec93aeb.zip
Auto merge of #6512 - frewsxcv:https-github-pages, r=SimonSapin
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' ``` <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6512) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/document.rs')
-rw-r--r--components/script/dom/document.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs
index eaf68a380de..d63dcd017ff 100644
--- a/components/script/dom/document.rs
+++ b/components/script/dom/document.rs
@@ -270,11 +270,11 @@ pub trait DocumentHelpers<'a> {
fn set_current_script(self, script: Option<&HTMLScriptElement>);
fn trigger_mozbrowser_event(self, event: MozBrowserEvent);
- /// http://w3c.github.io/animation-timing/#dom-windowanimationtiming-requestanimationframe
+ /// https://w3c.github.io/animation-timing/#dom-windowanimationtiming-requestanimationframe
fn request_animation_frame(self, callback: Box<Fn(f64, )>) -> i32;
- /// http://w3c.github.io/animation-timing/#dom-windowanimationtiming-cancelanimationframe
+ /// https://w3c.github.io/animation-timing/#dom-windowanimationtiming-cancelanimationframe
fn cancel_animation_frame(self, ident: i32);
- /// http://w3c.github.io/animation-timing/#dfn-invoke-callbacks-algorithm
+ /// https://w3c.github.io/animation-timing/#dfn-invoke-callbacks-algorithm
fn invoke_animation_callbacks(self);
fn prepare_async_load(self, load: LoadType) -> PendingAsyncLoad;
fn load_async(self, load: LoadType, listener: Box<AsyncResponseTarget + Send>);
@@ -878,7 +878,7 @@ impl<'a> DocumentHelpers<'a> for &'a Document {
}
}
- /// http://w3c.github.io/animation-timing/#dom-windowanimationtiming-requestanimationframe
+ /// https://w3c.github.io/animation-timing/#dom-windowanimationtiming-requestanimationframe
fn request_animation_frame(self, callback: Box<Fn(f64, )>) -> i32 {
let window = self.window.root();
let window = window.r();
@@ -896,7 +896,7 @@ impl<'a> DocumentHelpers<'a> for &'a Document {
ident
}
- /// http://w3c.github.io/animation-timing/#dom-windowanimationtiming-cancelanimationframe
+ /// https://w3c.github.io/animation-timing/#dom-windowanimationtiming-cancelanimationframe
fn cancel_animation_frame(self, ident: i32) {
self.animation_frame_list.borrow_mut().remove(&ident);
if self.animation_frame_list.borrow().len() == 0 {
@@ -909,7 +909,7 @@ impl<'a> DocumentHelpers<'a> for &'a Document {
}
}
- /// http://w3c.github.io/animation-timing/#dfn-invoke-callbacks-algorithm
+ /// https://w3c.github.io/animation-timing/#dfn-invoke-callbacks-algorithm
fn invoke_animation_callbacks(self) {
let animation_frame_list;
{