summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-02-26 11:43:52 +0100
committerAndreas Kling <kling@serenityos.org>2022-02-26 12:18:39 +0100
commit79ea30bc967f0ed1b28cb4aed4d6fdabb3f62408 (patch)
treed8600b815771fa8d9a3193493111c86d81ee1000 /Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl
parent647576ec13f6be9f2b7f7c9ef4fef8aaf083f5f2 (diff)
downloadserenity-79ea30bc967f0ed1b28cb4aed4d6fdabb3f62408.zip
LibWeb: Add HTMLTableSectionElement.rows and HTMLTableRowElement.cells
1% progression on ACID3. :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl
index 0b97272bc1..8ddaa33eb3 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl
+++ b/Userland/Libraries/LibWeb/HTML/HTMLTableRowElement.idl
@@ -1,3 +1,4 @@
+#import <DOM/HTMLCollection.idl>
#import <HTML/HTMLElement.idl>
interface HTMLTableRowElement : HTMLElement {
@@ -9,4 +10,6 @@ interface HTMLTableRowElement : HTMLElement {
[LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
+ [SameObject] readonly attribute HTMLCollection cells;
+
};