mirror of
https://github.com/servo/servo.git
synced 2025-06-10 01:23:13 +00:00
Use html5ever for HTML parsing
This commit is contained in:
parent
3fbb25cc43
commit
9da7679367
13 changed files with 749 additions and 119 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue