aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/testbindingiterable.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2023-05-28 22:43:55 -0400
committerJosh Matthews <josh@joshmatthews.net>2023-05-28 23:23:12 -0400
commitdbff26bce05d404027ef5bbfd85fb5995e4726bc (patch)
tree6ebb631eef396c2f387fe8269b0d59bde0dccae2 /components/script/dom/testbindingiterable.rs
parentd9600ff50f3c1bdd8c44e2dfc15a18416d80cb82 (diff)
downloadservo-dbff26bce05d404027ef5bbfd85fb5995e4726bc.tar.gz
servo-dbff26bce05d404027ef5bbfd85fb5995e4726bc.zip
Support arbitrary protos when wrapping DOM objects with constructors.
Diffstat (limited to 'components/script/dom/testbindingiterable.rs')
-rw-r--r--components/script/dom/testbindingiterable.rs12
1 files changed, 7 insertions, 5 deletions
diff --git a/components/script/dom/testbindingiterable.rs b/components/script/dom/testbindingiterable.rs
index 5befaaa2c59..1ed0434c70b 100644
--- a/components/script/dom/testbindingiterable.rs
+++ b/components/script/dom/testbindingiterable.rs
@@ -7,11 +7,12 @@
use crate::dom::bindings::cell::DomRefCell;
use crate::dom::bindings::codegen::Bindings::TestBindingIterableBinding::TestBindingIterableMethods;
use crate::dom::bindings::error::Fallible;
-use crate::dom::bindings::reflector::{reflect_dom_object, Reflector};
+use crate::dom::bindings::reflector::{reflect_dom_object2, Reflector};
use crate::dom::bindings::root::DomRoot;
use crate::dom::bindings::str::DOMString;
use crate::dom::globalscope::GlobalScope;
use dom_struct::dom_struct;
+use js::rust::HandleObject;
#[dom_struct]
pub struct TestBindingIterable {
@@ -20,19 +21,20 @@ pub struct TestBindingIterable {
}
impl TestBindingIterable {
- fn new(global: &GlobalScope) -> DomRoot<TestBindingIterable> {
- reflect_dom_object(
+ fn new(global: &GlobalScope, proto: Option<HandleObject>) -> DomRoot<TestBindingIterable> {
+ reflect_dom_object2(
Box::new(TestBindingIterable {
reflector: Reflector::new(),
vals: DomRefCell::new(vec![]),
}),
global,
+ proto,
)
}
#[allow(non_snake_case)]
- pub fn Constructor(global: &GlobalScope) -> Fallible<DomRoot<TestBindingIterable>> {
- Ok(TestBindingIterable::new(global))
+ pub fn Constructor(global: &GlobalScope, proto: Option<HandleObject>) -> Fallible<DomRoot<TestBindingIterable>> {
+ Ok(TestBindingIterable::new(global, proto))
}
}