diff options
author | Brian J. Burg <burg@cs.washington.edu> | 2012-09-06 16:55:29 -0700 |
---|---|---|
committer | Brian J. Burg <burg@cs.washington.edu> | 2012-09-06 16:55:29 -0700 |
commit | 2a0761732e72bae3ffd0d28f3cc5ab29031d4802 (patch) | |
tree | 38ced61443cb00657ee4350a450ab1470c6ee812 /src/servo/css/parser_util.rs | |
parent | 945058adc0ac598e1d4b3d742b3b3e3fb145d66d (diff) | |
download | servo-2a0761732e72bae3ffd0d28f3cc5ab29031d4802.tar.gz servo-2a0761732e72bae3ffd0d28f3cc5ab29031d4802.zip |
Fix test build
Diffstat (limited to 'src/servo/css/parser_util.rs')
-rw-r--r-- | src/servo/css/parser_util.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/servo/css/parser_util.rs b/src/servo/css/parser_util.rs index 5ae9a7f6c9c..3806f7b34a8 100644 --- a/src/servo/css/parser_util.rs +++ b/src/servo/css/parser_util.rs @@ -62,8 +62,9 @@ fn parse_display_type(str : ~str) -> Option<DisplayType> { #[cfg(test)] mod test { - import css_lexer::spawn_css_lexer_from_string; - import css_builder::build_stylesheet; + import css::lexer::spawn_css_lexer_from_string; + import css::parser::build_stylesheet; + import css::values::{Stylesheet, Element, FontSize, Width, Height}; #[test] fn should_match_font_sizes() { |