2020-08-11 14:58:41 -04:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
|
|
|
test!(
|
|
|
|
keyword_important_lowercase,
|
|
|
|
"a {\n height: !important;\n}\n",
|
|
|
|
"a {\n height: !important;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
keyword_important_uppercase,
|
|
|
|
"a {\n height: !IMPORTANT;\n}\n",
|
|
|
|
"a {\n height: !important;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
keyword_important_at_start_of_list,
|
|
|
|
"a {\n height: !important 1 2 3;\n}\n",
|
|
|
|
"a {\n height: !important 1 2 3;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
keyword_important_at_end_of_list,
|
|
|
|
"a {\n height: 1 2 3 !important;\n}\n",
|
|
|
|
"a {\n height: 1 2 3 !important;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
keyword_important_inside_list,
|
|
|
|
"a {\n color: 1 2 !important 3 4;\n}\n",
|
|
|
|
"a {\n color: 1 2 !important 3 4;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
whitespace_after_exclamation,
|
|
|
|
"a {\n color: ! important;\n}\n",
|
|
|
|
"a {\n color: !important;\n}\n"
|
|
|
|
);
|
2022-12-26 19:06:20 -05:00
|
|
|
test!(
|
|
|
|
loud_comment_after_exclamation,
|
|
|
|
"a {\n color: !/**/important;\n}\n",
|
|
|
|
"a {\n color: !important;\n}\n"
|
|
|
|
);
|
|
|
|
test!(
|
|
|
|
silent_comment_after_exclamation,
|
|
|
|
"a {\n color: !//\nimportant;\n}\n",
|
|
|
|
"a {\n color: !important;\n}\n"
|
|
|
|
);
|