1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

LibWeb: Implement HTMLTableElement caption attributes

* caption - Getter and setter for the caption element
* createCaption - If necessary, creates a new caption element
  and add it to the table
* deleteCaption - If a caption element exists in the table, delete it
This commit is contained in:
Adam Hodgen 2021-05-02 17:43:42 +01:00 committed by Andreas Kling
parent 887fa18e32
commit 0fa0367a39
4 changed files with 46 additions and 0 deletions

View file

@ -1,5 +1,9 @@
interface HTMLTableElement : HTMLElement {
attribute HTMLTableCaptionElement? caption;
HTMLTableCaptionElement createCaption();
undefined deleteCaption();
readonly attribute HTMLCollection rows;
HTMLTableRowElement insertRow(optional long index = -1);
undefined deleteRow(long index);