mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Add spec links
This commit is contained in:
parent
f039827dcd
commit
233a769c67
61 changed files with 284 additions and 87 deletions
|
@ -65,7 +65,7 @@ impl HTMLTableElement {
|
|||
}
|
||||
|
||||
impl<'a> HTMLTableElementMethods for &'a HTMLTableElement {
|
||||
// https://www.whatwg.org/html/#dom-table-caption
|
||||
// https://html.spec.whatwg.org/multipage/#dom-table-caption
|
||||
fn GetCaption(self) -> Option<Root<HTMLTableCaptionElement>> {
|
||||
let node = NodeCast::from_ref(self);
|
||||
node.children()
|
||||
|
@ -75,7 +75,7 @@ impl<'a> HTMLTableElementMethods for &'a HTMLTableElement {
|
|||
.next()
|
||||
}
|
||||
|
||||
// https://www.whatwg.org/html/#dom-table-caption
|
||||
// https://html.spec.whatwg.org/multipage/#dom-table-caption
|
||||
fn SetCaption(self, new_caption: Option<&HTMLTableCaptionElement>) {
|
||||
let node = NodeCast::from_ref(self);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue