We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c77be8 commit 77a3e8eCopy full SHA for 77a3e8e
1 file changed
libs/css/src/lib.rs
@@ -468,6 +468,10 @@ mod tests {
468
#[case(";", "_sc_")]
469
#[case("{", "_lc_")]
470
#[case("}", "_rc_")]
471
+ // ASCII not in lookup table and not alphanumeric/-/_ (line 212 branch)
472
+ #[case("`", "_u0060_")]
473
+ #[case("\t", "_u0009_")]
474
+ #[case("\x01", "_u0001_")]
475
// Unicode character (non-ASCII)
476
#[case("한글", "_ud55c__uae00_")]
477
#[case("emoji😀", "emoji_u1f600_")]
0 commit comments