css_ast 0.0.22

CSS Abstract Syntax Trees with visitable nodes and style value types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(unused)]
use super::prelude::*;

/// <https://drafts.csswg.org/css-masking-1/#funcdef-rect>
///
/// ```text,ignore
/// rect() = rect( <top>, <right>, <bottom>, <left> )
/// ```
pub type RectFunction = Todo;

#[cfg(test)]
mod tests {
	use super::*;
	use crate::CssAtomSet;
}