mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00:00
LibWeb: Make HTMLCollection and subclasses GC-allocated
This commit is contained in:
parent
4c887bf6c3
commit
2bba97964b
Notes:
sideshowbarker
2024-07-17 07:43:05 +09:00
Author: https://github.com/awesomekling
Commit: 2bba97964b
Pull-request: https://github.com/SerenityOS/serenity/pull/14816
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/linusg ✅
22 changed files with 115 additions and 85 deletions
|
@ -35,10 +35,10 @@ public:
|
|||
JS::NonnullGCPtr<HTMLTableSectionElement> create_t_foot();
|
||||
void delete_t_foot();
|
||||
|
||||
NonnullRefPtr<DOM::HTMLCollection> t_bodies();
|
||||
JS::NonnullGCPtr<DOM::HTMLCollection> t_bodies();
|
||||
JS::NonnullGCPtr<HTMLTableSectionElement> create_t_body();
|
||||
|
||||
NonnullRefPtr<DOM::HTMLCollection> rows();
|
||||
JS::NonnullGCPtr<DOM::HTMLCollection> rows();
|
||||
DOM::ExceptionOr<JS::NonnullGCPtr<HTMLTableRowElement>> insert_row(long index);
|
||||
DOM::ExceptionOr<void> delete_row(long index);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue