mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
The new library is https://github.com/servo/rust-selectors. It’s not quite ready for other users (the API needs work), but this is a first step. https://github.com/servo/rust-selectors/pull/2 should also be reviewed. Fixes #3669. Source-Repo: https://github.com/servo/servo Source-Revision: 91abf5557b1a324d6568ce08cfb92cdffca10e41
67 lines
1.6 KiB
Rust
67 lines
1.6 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#![feature(plugin)]
|
|
#![feature(int_uint)]
|
|
#![feature(box_syntax)]
|
|
#![feature(core)]
|
|
#![feature(std_misc)]
|
|
#![feature(collections)]
|
|
#![feature(rustc_private)]
|
|
|
|
#![allow(missing_copy_implementations)]
|
|
|
|
#[macro_use] extern crate log;
|
|
#[macro_use] extern crate bitflags;
|
|
#[no_link] #[macro_use] #[plugin] extern crate string_cache_macros;
|
|
|
|
extern crate collections;
|
|
extern crate geom;
|
|
extern crate text_writer;
|
|
extern crate url;
|
|
|
|
#[macro_use]
|
|
extern crate cssparser;
|
|
|
|
#[macro_use]
|
|
extern crate matches;
|
|
|
|
extern crate encoding;
|
|
extern crate string_cache;
|
|
extern crate selectors;
|
|
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
extern crate util;
|
|
|
|
#[plugin] #[no_link] extern crate mod_path;
|
|
|
|
|
|
pub mod stylesheets;
|
|
pub mod parser;
|
|
pub mod selector_matching;
|
|
#[macro_use] pub mod values;
|
|
|
|
// Generated from the properties.mako.rs template by build.rs
|
|
mod_path! properties (concat!(env!("OUT_DIR"), "/properties.rs"));
|
|
|
|
pub mod node;
|
|
pub mod media_queries;
|
|
pub mod font_face;
|
|
pub mod legacy;
|
|
|
|
macro_rules! reexport_computed_values {
|
|
( $( $name: ident )+ ) => {
|
|
pub mod computed_values {
|
|
$(
|
|
pub use properties::longhands::$name::computed_value as $name;
|
|
)+
|
|
// Don't use a side-specific name needlessly:
|
|
pub use properties::longhands::border_top_style::computed_value as border_style;
|
|
}
|
|
}
|
|
}
|
|
longhand_properties_idents!(reexport_computed_values);
|
|
|