diff options
author | GauriGNaik <gaurinaik.145@gmail.com> | 2015-10-26 11:31:28 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-11-25 18:28:30 -0500 |
commit | 996e9e06b2b57cfc7549eaba71cf1abbd746ca24 (patch) | |
tree | 892d7bde46bac071356c7a195c460c931e88cd1f /components/layout/lib.rs | |
parent | 8efc954531d2c7491ea01b6e22c89e35c5cf434a (diff) | |
download | servo-996e9e06b2b57cfc7549eaba71cf1abbd746ca24.tar.gz servo-996e9e06b2b57cfc7549eaba71cf1abbd746ca24.zip |
Defined new trait ParseErrorReporter and added error_reporter member to ParserContext
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r-- | components/layout/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs index dd41d926b29..a19bf5aa42e 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -53,6 +53,7 @@ extern crate serde_json; extern crate smallvec; #[macro_use(atom, ns)] extern crate string_cache; extern crate style; +extern crate style_traits; extern crate unicode_bidi; extern crate unicode_script; extern crate url; |