aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html/hubbub_html_parser.rs
diff options
context:
space:
mode:
authorhgentry <harrison@gentryville.net>2014-02-27 15:35:27 -0500
committerhgentry <harrison@gentryville.net>2014-02-27 15:35:27 -0500
commit39e571ae4e23e7c2b96f33773c0c1ea057968487 (patch)
tree078fa542ea0498d890524d480adaf5d5efccbf03 /src/components/script/html/hubbub_html_parser.rs
parentab72c473cde0cd69a44dc274d3ecf18207af785c (diff)
downloadservo-39e571ae4e23e7c2b96f33773c0c1ea057968487.tar.gz
servo-39e571ae4e23e7c2b96f33773c0c1ea057968487.zip
Renamed HTMLIframeElementTypeId to HTMLIFrameElementTypeId
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r--src/components/script/html/hubbub_html_parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs
index 26d1faacdbc..6d423b5eda5 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -7,7 +7,7 @@ use dom::bindings::codegen::InheritTypes::HTMLIFrameElementCast;
use dom::bindings::js::JS;
use dom::bindings::utils::Reflectable;
use dom::document::Document;
-use dom::element::{HTMLLinkElementTypeId, HTMLIframeElementTypeId};
+use dom::element::{HTMLLinkElementTypeId, HTMLIFrameElementTypeId};
use dom::htmlelement::HTMLElement;
use dom::htmlheadingelement::{Heading1, Heading2, Heading3, Heading4, Heading5, Heading6};
use dom::htmliframeelement::IFrameSize;
@@ -350,7 +350,7 @@ pub fn parse_html(cx: *JSContext,
}
}
- ElementNodeTypeId(HTMLIframeElementTypeId) => {
+ ElementNodeTypeId(HTMLIFrameElementTypeId) => {
let iframe_chan = discovery_chan.clone();
let mut iframe_element: JS<HTMLIFrameElement> =
HTMLIFrameElementCast::to(&element);