1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// This file is part of css. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/css/master/COPYRIGHT. No part of predicator, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2017 The developers of css. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/css/master/COPYRIGHT.
//! # css
//!
//! A Rust library crate for parsing, manipulating and serializing CSS stylesheets.
//! Makes use of existing CSS parser logic from Servo.
//! Includes forks of code from Servo because these are unpublished on <https://crates.io>.
//! One use of this library is to minify CSS, as the serialized form it produces is minimal.
//! Another use is provide a crate that others can use for auto-prefixing CSS and to eliminate unused CSS.
//! The values of property declarations are currently stored as a string. Parsing property declarations is a monster job (in effect there are bespoke rules for every property). If you feel like helping...
//!
//!
//! ## Usages
//!
//!
//! ### Loading and Saving Stylesheets
//!
//! ```
//! extern crate css;
//! use ::css::Stylesheet;
//!
//! let some_css = "margin-left: 10pt; top: 20px;".to_owned();
//! let stylesheet = Stylesheet::parse(&some_css).expect("CSS was invalid");
//!
//! // Alternatively, load from a file using Stylesheet::from_file_path("/path/to/stylesheet.css").unwrap();
//!
//! let mut destination = String::new();
//!
//! // Don't write source-map and source-url comments if any are present in the stylesheet
//! let include_source_urls = false;
//!
//! stylesheet.to_css(&mut destination, include_source_urls).expect("Failed to write to destination");
//!
//! assert_eq!(&destination, "margin-left:10pt;top:20px");
//!
//! // To serialize to a Vec<u8> of bytes instead
//! let mut bytes = stylesheet.to_bytes();
//!
//! // To serialize to a file instead
//! stylesheet.to_file_path("/path/to/to/stylesheet.css").unwrap();
//! ```
//!
//!
//! ### To parse a single CSS selector
//!
//! ```
//! extern crate css;
//! use ::css::parse_selector;
//!
//! let selector = parse_selector("P.myclass").unwrap();
//! ```
//!
//!
//! ### To match CSS selectors to HTML
//!
//! Use the `html5ever_ext` crate. (The function `domain::selectors::matches()` can do matching but needs a lot of HTML logic to do so).
//!
extern crate bitflags;
pub extern crate cssparser;
extern crate either;
pub extern crate ordermap;
extern crate phf;
extern crate precomputed_hash;
extern crate quick_error;
// To be re-introduced once selectors 0.19.0 lands in crates.io
// pub extern crate selectors;
pub extern crate smallvec;
use *;
use System;
use Namespaces;
use *;
use *;
use *;
use *;
use ResultExt;
use SelectorParseError;
use fmt;
use File;
use Read;
use uninitialized;
use Path;
use PathBuf;
/// Contains definitions of objects used in Stylesheet.
pub
pub
// This module is forked from the servo repository 'https://github.com/servo/servo' component selectors crate (components/selectors) at revision 4f984a6428a0f497e311a0800efa55166c15aac6
// To be removed once selectors 0.19.0 lands in crates.io
extern crate log;
extern crate matches;
extern crate fnv;
/// Temporary fork of CSS selectors as the version we need is not yet available in <https://crates.io>.
// This module is forked from the servo repository 'https://github.com/servo/servo' component servo_arc crate (components/servo_arc) at revision 4f984a6428a0f497e311a0800efa55166c15aac6
// To be removed once selectors 0.19.0 lands in crates.io
extern crate nodrop;
extern crate stable_deref_trait;
/// Temporary fork of Servo Arc as the version we need to support CSS selectors is not yet available in <https://crates.io>.
include!;
include!;
include!;
include!;
include!;