mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update WHATWG links to use HTTPS
Extracted this out of #5649 This commit was created with the following commands: ``` find . -iname "*.webidl" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ``` ``` find . -iname "*.rs" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ```
This commit is contained in:
parent
55de52d76a
commit
5eaa922045
152 changed files with 378 additions and 378 deletions
|
@ -60,7 +60,7 @@ impl HTMLTableElement {
|
|||
}
|
||||
|
||||
impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> {
|
||||
// http://www.whatwg.org/html/#dom-table-caption
|
||||
// https://www.whatwg.org/html/#dom-table-caption
|
||||
fn GetCaption(self) -> Option<Temporary<HTMLTableCaptionElement>> {
|
||||
let node: JSRef<Node> = NodeCast::from_ref(self);
|
||||
node.children()
|
||||
|
@ -71,7 +71,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> {
|
|||
.next()
|
||||
}
|
||||
|
||||
// http://www.whatwg.org/html/#dom-table-caption
|
||||
// https://www.whatwg.org/html/#dom-table-caption
|
||||
fn SetCaption(self, new_caption: Option<JSRef<HTMLTableCaptionElement>>) {
|
||||
let node: JSRef<Node> = NodeCast::from_ref(self);
|
||||
let old_caption = self.GetCaption();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue