mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
LibWeb: Add spec link and comment to HTMLTableElement::caption()
This commit is contained in:
@@ -54,8 +54,11 @@ void HTMLTableElement::apply_presentational_hints(CSS::StyleProperties& style) c
|
||||
});
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/tables.html#dom-table-caption
|
||||
JS::GCPtr<HTMLTableCaptionElement> HTMLTableElement::caption()
|
||||
{
|
||||
// The caption IDL attribute must return, on getting, the first caption element child of the table element,
|
||||
// if any, or null otherwise.
|
||||
return first_child_of_type<HTMLTableCaptionElement>();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user