Skip to content

Commit 77a3e8e

Browse files
committed
Add case
1 parent 8c77be8 commit 77a3e8e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

libs/css/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,10 @@ mod tests {
468468
#[case(";", "_sc_")]
469469
#[case("{", "_lc_")]
470470
#[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_")]
471475
// Unicode character (non-ASCII)
472476
#[case("한글", "_ud55c__uae00_")]
473477
#[case("emoji😀", "emoji_u1f600_")]

0 commit comments

Comments
 (0)