css_ast/rules/
starting_style.rs

1use crate::Todo;
2
3// https://drafts.csswg.org/css-transitions-2/#at-ruledef-starting-style
4pub type StartingStyleRule = Todo;
5
6#[cfg(test)]
7mod tests {
8	use super::*;
9
10	#[test]
11	fn size_test() {
12		assert_eq!(std::mem::size_of::<StartingStyleRule>(), 0);
13	}
14
15	#[test]
16	fn test_writes() {
17		//assert_parse!(StartingStyleRule, "@starting-style");
18	}
19}