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

@ -6,6 +6,7 @@ use dom::bindings::codegen::Bindings::HTMLIFrameElementBinding;
use dom::bindings::codegen::InheritTypes::{ElementCast, HTMLIFrameElementDerived, HTMLElementCast};
use dom::bindings::js::{JSRef, Temporary, OptionalRootable};
use dom::bindings::trace::Traceable;
use dom::bindings::utils::{Reflectable, Reflector};
use dom::document::Document;
use dom::element::{HTMLIFrameElementTypeId, Element};
use dom::element::AttributeHandlers;
@ -206,3 +207,9 @@ impl<'a> VirtualMethods for JSRef<'a, HTMLIFrameElement> {
}
}
}
impl Reflectable for HTMLIFrameElement {
fn reflector<'a>(&'a self) -> &'a Reflector {
self.htmlelement.reflector()
}
}