css_ast 0.0.25

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/motion-1/#funcdef-ray>
///
/// ```text,ignore
/// ray() = ray( <angle> && <ray-size>? && contain? && [at <position>]? )
/// ```
pub type RayFunction = Todo;

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