Skip to content

Commit

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

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

#[test]
Expand Down

0 comments on commit c40c3be

Please sign in to comment.