Impl Basic support for object element

This commit is contained in:
Youngmin Yoo 2014-02-10 11:26:39 +09:00
parent ec4c31c214
commit 13f9a66632
6 changed files with 83 additions and 18 deletions

View file

@ -248,6 +248,11 @@ impl Element {
iframe.AfterSetAttr(local_name.clone(), value.clone());
});
}
ElementNodeTypeId(HTMLObjectElementTypeId) => {
abstract_self.with_mut_object_element(|object| {
object.AfterSetAttr(local_name.clone(), value.clone());
});
}
_ => ()
}