css_ast/types/
text_edge.rs

1#![allow(warnings)]
2use css_parse::{Cursor, CursorSink, Parse, Parser, Peek, Result as ParserResult, SourceOffset, T, ToCursors};
3
4use crate::Todo;
5
6// https://drafts.csswg.org/css-inline-3/#typedef-text-edge
7// <text-edge> = [ text | ideographic | ideographic-ink ] | [ text | ideographic | ideographic-ink | cap | ex ] [ text | ideographic | ideographic-ink | alphabetic ]
8pub type TextEdge = Todo;
9
10#[cfg(test)]
11mod tests {
12	use super::*;
13}