Skip to content

Commit

Permalink
fix(tests): Add missing no-prefix-duplication test
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoniePhiline committed Jul 26, 2023
1 parent c7913b0 commit a01f441
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10503,6 +10503,24 @@ mod tests {
..Browsers::default()
},
);

prefix_test(
r#"
.foo {
transition-property: -webkit-backdrop-filter, backdrop-filter;
}
"#,
indoc! {r#"
.foo {
transition-property: -webkit-backdrop-filter, backdrop-filter;
}
"#
},
Browsers {
safari: Some(15 << 16),
..Browsers::default()
},
);
}

#[test]
Expand Down

0 comments on commit a01f441

Please sign in to comment.