mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Issue #7390 correct the order of mod declaration
This commit is contained in:
parent
e81e91207c
commit
6565e7b02f
11 changed files with 53 additions and 55 deletions
|
@ -47,9 +47,9 @@ extern crate util;
|
|||
extern crate style_traits;
|
||||
|
||||
mod custom_properties;
|
||||
pub mod stylesheets;
|
||||
pub mod parser;
|
||||
pub mod selector_matching;
|
||||
pub mod stylesheets;
|
||||
#[macro_use] pub mod values;
|
||||
|
||||
// Generated from the properties.mako.rs template by build.rs
|
||||
|
@ -58,11 +58,11 @@ pub mod properties {
|
|||
include!(concat!(env!("OUT_DIR"), "/properties.rs"));
|
||||
}
|
||||
|
||||
pub mod node;
|
||||
pub mod media_queries;
|
||||
pub mod animation;
|
||||
pub mod font_face;
|
||||
pub mod legacy;
|
||||
pub mod animation;
|
||||
pub mod media_queries;
|
||||
pub mod node;
|
||||
pub mod viewport;
|
||||
|
||||
macro_rules! reexport_computed_values {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue