LibWeb: Add spec link and comment to HTMLTableElement::caption()

This commit is contained in:
Andreas Kling 2022-12-15 19:48:22 +01:00
parent 992b4489ad
commit 6e127f62d7
Notes: sideshowbarker 2024-07-18 04:38:32 +09:00

View file

@ -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>();
}