aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/nodelist.rs
diff options
context:
space:
mode:
authorAuguste Baum <52001167+augustebaum@users.noreply.github.com>2025-02-20 17:17:45 +0100
committerGitHub <noreply@github.com>2025-02-20 16:17:45 +0000
commit863d2ce8710fc5141b2c8fd0743697c0956412cb (patch)
tree05d3f853fa53b38a359427ac3d9ff19b7bc75db6 /components/script/dom/nodelist.rs
parent5465bfc2af38e561df5f0a7f81250a0238520d6d (diff)
downloadservo-863d2ce8710fc5141b2c8fd0743697c0956412cb.tar.gz
servo-863d2ce8710fc5141b2c8fd0743697c0956412cb.zip
Propagate `CanGc` arguments through callers in constructors (#35541)
Signed-off-by: Auguste Baum <auguste.apple@gmail.com>
Diffstat (limited to 'components/script/dom/nodelist.rs')
-rw-r--r--components/script/dom/nodelist.rs29
1 files changed, 20 insertions, 9 deletions
diff --git a/components/script/dom/nodelist.rs b/components/script/dom/nodelist.rs
index 2e0e0f73eb6..97acc186faf 100644
--- a/components/script/dom/nodelist.rs
+++ b/components/script/dom/nodelist.rs
@@ -46,12 +46,12 @@ impl NodeList {
}
#[cfg_attr(crown, allow(crown::unrooted_must_root))]
- pub(crate) fn new(window: &Window, list_type: NodeListType) -> DomRoot<NodeList> {
- reflect_dom_object(
- Box::new(NodeList::new_inherited(list_type)),
- window,
- CanGc::note(),
- )
+ pub(crate) fn new(
+ window: &Window,
+ list_type: NodeListType,
+ can_gc: CanGc,
+ ) -> DomRoot<NodeList> {
+ reflect_dom_object(Box::new(NodeList::new_inherited(list_type)), window, can_gc)
}
pub(crate) fn new_simple_list<T>(window: &Window, iter: T) -> DomRoot<NodeList>
@@ -61,6 +61,7 @@ impl NodeList {
NodeList::new(
window,
NodeListType::Simple(iter.map(|r| Dom::from_ref(&*r)).collect()),
+ CanGc::note(),
)
}
@@ -68,15 +69,24 @@ impl NodeList {
NodeList::new(
window,
NodeListType::Simple(slice.iter().map(|r| Dom::from_ref(*r)).collect()),
+ CanGc::note(),
)
}
pub(crate) fn new_child_list(window: &Window, node: &Node) -> DomRoot<NodeList> {
- NodeList::new(window, NodeListType::Children(ChildrenList::new(node)))
+ NodeList::new(
+ window,
+ NodeListType::Children(ChildrenList::new(node)),
+ CanGc::note(),
+ )
}
pub(crate) fn new_labels_list(window: &Window, element: &HTMLElement) -> DomRoot<NodeList> {
- NodeList::new(window, NodeListType::Labels(LabelsList::new(element)))
+ NodeList::new(
+ window,
+ NodeListType::Labels(LabelsList::new(element)),
+ CanGc::note(),
+ )
}
pub(crate) fn new_elements_by_name_list(
@@ -87,11 +97,12 @@ impl NodeList {
NodeList::new(
window,
NodeListType::ElementsByName(ElementsByNameList::new(document, name)),
+ CanGc::note(),
)
}
pub(crate) fn empty(window: &Window) -> DomRoot<NodeList> {
- NodeList::new(window, NodeListType::Simple(vec![]))
+ NodeList::new(window, NodeListType::Simple(vec![]), CanGc::note())
}
}