Remove generate_cacheable_wrapper_htmlelement!

This commit is contained in:
Tetsuharu OHZEKI 2014-06-28 04:41:48 +09:00
parent a9eaaa833f
commit 3a293b3f1c
65 changed files with 441 additions and 149 deletions

View file

@ -5,6 +5,7 @@
use dom::bindings::codegen::Bindings::HTMLBaseElementBinding;
use dom::bindings::codegen::InheritTypes::HTMLBaseElementDerived;
use dom::bindings::js::{JSRef, Temporary};
use dom::bindings::utils::{Reflectable, Reflector};
use dom::document::Document;
use dom::element::HTMLBaseElementTypeId;
use dom::eventtarget::{EventTarget, NodeTargetTypeId};
@ -38,3 +39,9 @@ impl HTMLBaseElement {
pub trait HTMLBaseElementMethods {
}
impl Reflectable for HTMLBaseElement {
fn reflector<'a>(&'a self) -> &'a Reflector {
self.htmlelement.reflector()
}
}