diff options
author | tanishka <109246904+taniishkaaa@users.noreply.github.com> | 2024-10-24 04:18:19 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 22:48:19 +0000 |
commit | ea875f0a51551914f85e56945a663ca0e749cc0e (patch) | |
tree | 744025510d9c1399abc843e7669e714dca37b98d /components/script/dom/xmlhttprequest.rs | |
parent | bb4932026cef55aefd95a5a627a944e1ad26c6f2 (diff) | |
download | servo-ea875f0a51551914f85e56945a663ca0e749cc0e.tar.gz servo-ea875f0a51551914f85e56945a663ca0e749cc0e.zip |
CanGc fixes from EventTarget::fire_event (#33985)
Signed-off-by: taniishkaaa <tanishkasingh2004@gmail.com>
Diffstat (limited to 'components/script/dom/xmlhttprequest.rs')
-rw-r--r-- | components/script/dom/xmlhttprequest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/xmlhttprequest.rs b/components/script/dom/xmlhttprequest.rs index 970012c12e9..64466ef749b 100644 --- a/components/script/dom/xmlhttprequest.rs +++ b/components/script/dom/xmlhttprequest.rs @@ -291,7 +291,7 @@ impl XMLHttpRequest { } fn submit_resource_timing(&mut self) { - network_listener::submit_timing(self) + network_listener::submit_timing(self, CanGc::note()) } } |