2020-02-28 18:27:32 -05:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
|
|
|
test!(
|
2021-07-20 20:41:21 -04:00
|
|
|
charset_exists_when_output_not_ascii,
|
2020-02-28 18:27:32 -05:00
|
|
|
"a {\n color: 🦆;\n}\n",
|
|
|
|
"@charset \"UTF-8\";\na {\n color: 🦆;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
2021-07-20 20:41:21 -04:00
|
|
|
charset_utf8_is_removed_when_ascii,
|
2020-02-28 18:27:32 -05:00
|
|
|
"@charset \"UTF-8\";\na {\n color: red;\n}\n",
|
|
|
|
"a {\n color: red;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
2021-07-20 20:41:21 -04:00
|
|
|
unknown_charset_is_removed,
|
2020-02-28 18:27:32 -05:00
|
|
|
"@charset \"foo\";\na {\n color: red;\n}\n",
|
|
|
|
"a {\n color: red;\n}\n"
|
|
|
|
);
|
2022-12-26 15:33:04 -05:00
|
|
|
test!(
|
|
|
|
comment_between_rule_and_string,
|
|
|
|
"@charset/**/\"foo\";\na {\n color: red;\n}\n",
|
|
|
|
"a {\n color: red;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
comment_after_string,
|
|
|
|
"@charset \"foo\"/**/;\na {\n color: red;\n}\n",
|
|
|
|
"/**/\na {\n color: red;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
no_space_after_at_rule,
|
|
|
|
"@charset\"foo\";\na {\n color: red;\n}\n",
|
|
|
|
"a {\n color: red;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
charset_inside_rule,
|
|
|
|
"a {\n color: red;@charset \"foo\";\n\n}\n",
|
|
|
|
"a {\n color: red;\n @charset \"foo\";\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
charset_after_rule,
|
|
|
|
"a {\n color: red;\n}\n@charset \"foo\";\n",
|
|
|
|
"a {\n color: red;\n}\n"
|
|
|
|
);
|
2021-07-20 20:41:21 -04:00
|
|
|
error!(
|
|
|
|
invalid_charset_value,
|
2021-07-20 23:55:18 -04:00
|
|
|
"@charset 1;", "Error: Expected string."
|
2021-07-20 20:41:21 -04:00
|
|
|
);
|
|
|
|
error!(
|
|
|
|
invalid_charset_value_unquoted_string,
|
2021-07-20 23:55:18 -04:00
|
|
|
"@charset a;", "Error: Expected string."
|
2021-07-20 20:41:21 -04:00
|
|
|
);
|
2022-12-26 15:33:04 -05:00
|
|
|
error!(
|
|
|
|
invalid_charset_value_silent_comment,
|
|
|
|
"@charset //", "Error: Expected string."
|
|
|
|
);
|
|
|
|
error!(
|
|
|
|
invalid_charset_value_unterminated_loud_comment,
|
|
|
|
"@charset /*", "Error: expected more input."
|
|
|
|
);
|