mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +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
|
@ -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;
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
* References:
|
||||
* MDN Docs - https://developer.mozilla.org/en-US/docs/Web/API/console
|
||||
* Draft Spec - http://sideshowbarker.github.io/console-spec/
|
||||
* Draft Spec - https://sideshowbarker.github.io/console-spec/
|
||||
*
|
||||
* © Copyright 2014 Mozilla Foundation.
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*
|
||||
* This IDL file was created to test the special operations (see
|
||||
* http://heycam.github.io/webidl/#idl-special-operations) without converting
|
||||
* https://heycam.github.io/webidl/#idl-special-operations) without converting
|
||||
* TestBinding.webidl into a proxy.
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -149,7 +149,7 @@ interface WindowLocalStorage {
|
|||
};
|
||||
Window implements WindowLocalStorage;
|
||||
|
||||
// http://w3c.github.io/animation-timing/#Window-interface-extensions
|
||||
// https://w3c.github.io/animation-timing/#Window-interface-extensions
|
||||
partial interface Window {
|
||||
long requestAnimationFrame(FrameRequestCallback callback);
|
||||
void cancelAnimationFrame(long handle);
|
||||
|
|
|
@ -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