aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html/hubbub_html_parser.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-02-28 11:37:40 -0500
committerbors-servo <release+servo@mozilla.com>2014-02-28 11:37:40 -0500
commit021d32368d569298da619041c9ffe262c91063e4 (patch)
tree40535f318ac36d9d617044dc83933b1d27ad1d9f /src/components/script/html/hubbub_html_parser.rs
parentdef5483579fad1e7f77ca96bd10fc5eb85e37740 (diff)
parent39e571ae4e23e7c2b96f33773c0c1ea057968487 (diff)
downloadservo-021d32368d569298da619041c9ffe262c91063e4.tar.gz
servo-021d32368d569298da619041c9ffe262c91063e4.zip
auto merge of #1781 : hgentry/servo/mozilla-servo, r=metajack
Simple change. I hope I'm using github correctly; I'm not too familiar with the PR system. Fixes #1777.
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);