Use html5ever for HTML parsing

This commit is contained in:
Keegan McAllister 2014-09-19 14:02:22 -07:00
parent 3fbb25cc43
commit 9da7679367
13 changed files with 749 additions and 119 deletions

View file

@ -20,7 +20,7 @@ extern crate devtools_traits;
extern crate cssparser;
extern crate collections;
extern crate geom;
extern crate hubbub;
extern crate html5ever;
extern crate encoding;
extern crate http;
extern crate js;
@ -191,6 +191,7 @@ pub mod dom {
pub mod progressevent;
pub mod range;
pub mod screen;
pub mod servohtmlparser;
pub mod text;
pub mod treewalker;
pub mod uievent;
@ -210,9 +211,8 @@ pub mod dom {
pub mod testbinding;
}
/// Parsers for HTML and CSS.
pub mod html {
pub mod hubbub_html_parser;
pub mod parse {
pub mod html;
}
pub mod layout_interface;