diff options
author | hgentry <harrison@gentryville.net> | 2014-02-27 15:35:27 -0500 |
---|---|---|
committer | hgentry <harrison@gentryville.net> | 2014-02-27 15:35:27 -0500 |
commit | 39e571ae4e23e7c2b96f33773c0c1ea057968487 (patch) | |
tree | 078fa542ea0498d890524d480adaf5d5efccbf03 /src/components/script/dom/element.rs | |
parent | ab72c473cde0cd69a44dc274d3ecf18207af785c (diff) | |
download | servo-39e571ae4e23e7c2b96f33773c0c1ea057968487.tar.gz servo-39e571ae4e23e7c2b96f33773c0c1ea057968487.zip |
Renamed HTMLIframeElementTypeId to HTMLIFrameElementTypeId
Diffstat (limited to 'src/components/script/dom/element.rs')
-rw-r--r-- | src/components/script/dom/element.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/script/dom/element.rs b/src/components/script/dom/element.rs index 592511cd943..97b36d61920 100644 --- a/src/components/script/dom/element.rs +++ b/src/components/script/dom/element.rs @@ -90,7 +90,7 @@ pub enum ElementTypeId { HTMLHeadElementTypeId, HTMLHeadingElementTypeId, HTMLHtmlElementTypeId, - HTMLIframeElementTypeId, + HTMLIFrameElementTypeId, HTMLImageElementTypeId, HTMLInputElementTypeId, HTMLLabelElementTypeId, @@ -264,7 +264,7 @@ impl Element { let mut elem: JS<HTMLImageElement> = HTMLImageElementCast::to(abstract_self); elem.get_mut().AfterSetAttr(local_name.clone(), value.clone()); } - ElementNodeTypeId(HTMLIframeElementTypeId) => { + ElementNodeTypeId(HTMLIFrameElementTypeId) => { let mut elem: JS<HTMLIFrameElement> = HTMLIFrameElementCast::to(abstract_self); elem.get_mut().AfterSetAttr(local_name.clone(), value.clone()); } @@ -333,7 +333,7 @@ impl Element { let mut elem: JS<HTMLImageElement> = HTMLImageElementCast::to(abstract_self); elem.get_mut().BeforeRemoveAttr(local_name.clone()); } - ElementNodeTypeId(HTMLIframeElementTypeId) => { + ElementNodeTypeId(HTMLIFrameElementTypeId) => { let mut elem: JS<HTMLIFrameElement> = HTMLIFrameElementCast::to(abstract_self); elem.get_mut().BeforeRemoveAttr(local_name.clone()); } |