diff options
author | chickenleaf <lashwinib@gmail.com> | 2024-10-18 17:24:32 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-18 11:54:32 +0000 |
commit | fde8d72acabb6f8314efe0e66312c02a488a7613 (patch) | |
tree | f03dbd61bbb4dbc77fb48414671f8e3c29f8ff33 /components/script/dom/htmlformelement.rs | |
parent | 6b87ecc291b08559cd2bbda8e4902f70a0fd0c7c (diff) | |
download | servo-fde8d72acabb6f8314efe0e66312c02a488a7613.tar.gz servo-fde8d72acabb6f8314efe0e66312c02a488a7613.zip |
Various CanGc fixes in 8 files (#33893)
* Various CanGc fixes in 8 files
Signed-off-by: L Ashwin B <lashwinib@gmail.com>
* fixed merge conflicts and formatting
Signed-off-by: L Ashwin B <lashwinib@gmail.com>
---------
Signed-off-by: L Ashwin B <lashwinib@gmail.com>
Diffstat (limited to 'components/script/dom/htmlformelement.rs')
-rw-r--r-- | components/script/dom/htmlformelement.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/htmlformelement.rs b/components/script/dom/htmlformelement.rs index d13747cd63d..50ff34d2541 100644 --- a/components/script/dom/htmlformelement.rs +++ b/components/script/dom/htmlformelement.rs @@ -1214,6 +1214,7 @@ impl HTMLFormElement { EventBubbles::Bubbles, EventCancelable::NotCancelable, &form_data, + can_gc, ); event.upcast::<Event>().fire(self.upcast::<EventTarget>()); |