diff options
Diffstat (limited to 'components/script/dom/testbindingiterable.rs')
-rw-r--r-- | components/script/dom/testbindingiterable.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script/dom/testbindingiterable.rs b/components/script/dom/testbindingiterable.rs index 1ed0434c70b..0dd37f9950c 100644 --- a/components/script/dom/testbindingiterable.rs +++ b/components/script/dom/testbindingiterable.rs @@ -33,7 +33,10 @@ impl TestBindingIterable { } #[allow(non_snake_case)] - pub fn Constructor(global: &GlobalScope, proto: Option<HandleObject>) -> Fallible<DomRoot<TestBindingIterable>> { + pub fn Constructor( + global: &GlobalScope, + proto: Option<HandleObject>, + ) -> Fallible<DomRoot<TestBindingIterable>> { Ok(TestBindingIterable::new(global, proto)) } } |