css_ast 0.0.25

CSS Abstract Syntax Trees with visitable nodes and style value types.
Documentation
use crate::Todo;

/// <https://drafts.csswg.org/css-cascade-6/#at-ruledef-scope>
pub type ScopeRule = Todo;

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

	#[test]
	fn size_test() {
		assert_eq!(std::mem::size_of::<ScopeRule>(), 0);
	}

	#[test]
	fn test_writes() {
		//assert_parse!(CssAtomSet::ATOMS, ScopeRule, "@scope");
	}
}