#![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;
}