diff options
Diffstat (limited to 'src/components/script/dom/clientrectlist.rs')
-rw-r--r-- | src/components/script/dom/clientrectlist.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/components/script/dom/clientrectlist.rs b/src/components/script/dom/clientrectlist.rs index ded917213d8..86e7d3bd309 100644 --- a/src/components/script/dom/clientrectlist.rs +++ b/src/components/script/dom/clientrectlist.rs @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::bindings::codegen::Bindings::ClientRectListBinding; +use dom::bindings::codegen::Bindings::ClientRectListBinding::ClientRectListMethods; use dom::bindings::global::Window; use dom::bindings::js::{JS, JSRef, Temporary}; use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; @@ -34,12 +35,6 @@ impl ClientRectList { } } -pub trait ClientRectListMethods { - fn Length(&self) -> u32; - fn Item(&self, index: u32) -> Option<Temporary<ClientRect>>; - fn IndexedGetter(&self, index: u32, found: &mut bool) -> Option<Temporary<ClientRect>>; -} - impl<'a> ClientRectListMethods for JSRef<'a, ClientRectList> { fn Length(&self) -> u32 { self.rects.len() as u32 |