diff options
Diffstat (limited to 'components/script/parse/html.rs')
-rw-r--r-- | components/script/parse/html.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/parse/html.rs b/components/script/parse/html.rs index 261bf143ed8..7d2dbf06741 100644 --- a/components/script/parse/html.rs +++ b/components/script/parse/html.rs @@ -30,8 +30,8 @@ use net::resource_task::{ProgressMsg, LoadResponse}; use util::task_state; use util::task_state::IN_HTML_PARSER; use std::ascii::AsciiExt; +use std::borrow::Cow; use std::old_io::{Writer, IoResult}; -use std::string::CowString; use url::Url; use html5ever::Attribute; use html5ever::serialize::{Serializable, Serializer, AttrRef}; @@ -120,7 +120,7 @@ impl<'a> TreeSink for servohtmlparser::Sink { Ok(()) } - fn parse_error(&mut self, msg: CowString<'static>) { + fn parse_error(&mut self, msg: Cow<'static, str>) { debug!("Parse error: {}", msg); } |