#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![feature(plugin)]
#![plugin(phf_macros)]
#[macro_use] extern crate bitflags;
#[macro_use] pub extern crate cssparser;
extern crate either;
pub extern crate ordermap;
extern crate phf;
extern crate precomputed_hash;
pub extern crate smallvec;
use self::domain::*;
use self::domain::atRules::counterStyle::System;
use self::domain::atRules::namespace::Namespaces;
use self::parsers::*;
use self::serializers::*;
use ::cssparser::*;
use ::selectors::parser::SelectorParseError;
use ::std::fmt;
pub mod domain;
pub(crate) mod parsers;
pub(crate) mod serializers;
#[macro_use] extern crate log;
#[macro_use] extern crate matches;
extern crate fnv;
pub mod selectors;
extern crate nodrop;
extern crate stable_deref_trait;
pub mod servo_arc;
include!("CustomParseError.rs");
include!("Stylesheet.rs");