/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use dom::attr::Attr; use dom::bindings::codegen::Bindings::AttrListBinding; use dom::bindings::codegen::Bindings::AttrListBinding::AttrListMethods; use dom::bindings::global::Window; use dom::bindings::js::{JS, JSRef, Temporary}; use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; use dom::element::Element; use dom::window::Window; #[deriving(Encodable)] pub struct AttrList { reflector_: Reflector, owner: JS, } impl AttrList { pub fn new_inherited(elem: &JSRef) -> AttrList { AttrList { reflector_: Reflector::new(), owner: JS::from_rooted(elem), } } pub fn new(window: &JSRef, elem: &JSRef) -> Temporary { reflect_dom_object(box AttrList::new_inherited(elem), &Window(*window), AttrListBinding::Wrap) } } impl<'a> AttrListMethods for JSRef<'a, AttrList> { fn Length(&self) -> u32 { self.owner.root().attrs.borrow().len() as u32 } fn Item(&self, index: u32) -> Option> { self.owner.root().attrs.borrow().as_slice().get(index as uint).map(|x| Temporary::new(x.clone())) } fn IndexedGetter(&self, index: u32, found: &mut bool) -> Option> { let item = self.Item(index); *found = item.is_some(); item } } impl Reflectable for AttrList { fn reflector<'a>(&'a self) -> &'a Reflector { &self.reflector_ } }