aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authornchinth <nchinth@ncsu.edu>2014-10-17 16:30:01 -0400
committerNikhil Chinthapallee <nchinth@ncsu.edu>2014-10-29 11:31:20 -0400
commit6a736c7f3c9456224aadde71ebbd62e844fd6877 (patch)
tree26105ea56f09373c717d4190cbc7bd34cf3f1945 /components/script/lib.rs
parent7ba02bb11d2d9275949cb7522c5fcbc4ebcd23d1 (diff)
downloadservo-6a736c7f3c9456224aadde71ebbd62e844fd6877.tar.gz
servo-6a736c7f3c9456224aadde71ebbd62e844fd6877.zip
Adding initial version of parser trait
Added parse_chunk method declaration to parser Removed unnecessary visibilty for parse_chunk function Implemented parse_chunk function Implemented parse_chunk fn for ServoHTMLParser Moved parser trait to mod.rs and added finish fn added licence header to mod.rs and other review comments Fixed trailing space issue Fixed failed tabular space test
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index e03801f5217..755898a5fd9 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -211,9 +211,7 @@ pub mod dom {
pub mod testbinding;
}
-pub mod parse {
- pub mod html;
-}
+pub mod parse;
pub mod layout_interface;
pub mod page;