1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ 4 5 #![cfg(test)] 6 #![feature(test)] 7 8 extern crate app_units; 9 extern crate cssparser; 10 extern crate euclid; 11 #[macro_use] extern crate html5ever; 12 extern crate parking_lot; 13 extern crate rayon; 14 extern crate selectors; 15 extern crate serde_json; 16 extern crate servo_arc; 17 extern crate servo_atoms; 18 extern crate servo_config; 19 extern crate servo_url; 20 #[macro_use] extern crate size_of_test; 21 #[macro_use] extern crate style; 22 extern crate style_traits; 23 extern crate test; 24 25 mod animated_properties; 26 mod attr; 27 mod custom_properties; 28 mod logical_geometry; 29 mod parsing; 30 mod properties; 31 mod rule_tree; 32 mod size_of; 33 mod specified_values; 34 mod str; 35 mod stylesheets; 36 mod stylist; 37 mod viewport; 38