use crate::Todo;
/// <https://drafts.csswg.org/css-fonts/#at-ruledef-font-feature-values>
pub type FontFeatureValuesRule = Todo;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn size_test() {
assert_eq!(std::mem::size_of::<FontFeatureValuesRule>(), 0);
}
#[test]
fn test_writes() {
//assert_parse!(CssAtomSet::ATOMS, FontFeatureValuesRule, "@font-feature-values Taisho Gothic {}");
}
}