Skip to main content

css_ast/types/
text_edge.rs

1#![allow(unused)]
2use super::prelude::*;
3
4use crate::Todo;
5
6/// <https://drafts.csswg.org/css-inline-3/#typedef-text-edge>
7///
8/// ```text,ignore
9/// <text-edge> = [ text | ideographic | ideographic-ink ] | [ text | ideographic | ideographic-ink | cap | ex ] [ text | ideographic | ideographic-ink | alphabetic ]
10/// ```
11pub type TextEdge = Todo;
12
13#[cfg(test)]
14mod tests {
15	use super::*;
16	use crate::CssAtomSet;
17}