swc/crates/swc_css_prefixer/tests/fixture/background/output.css
2022-03-25 19:46:45 +09:00

24 lines
644 B
CSS

.class {
background: none;
}
.class {
background: -webkit-image-set(url(foo.jpg) 2x);
background: image-set(url(foo.jpg) 2x);
}
.class {
background-image: -webkit-image-set(url(foo.jpg) 2x);
background-image: image-set(url(foo.jpg) 2x);
}
.class {
background: -webkit-filter(url('image.jpg'), blur(2px));
background: filter(url('image.jpg'), blur(2px));
}
.class {
background: -webkit-filter(url('image.jpg'), blur(2px));
background: filter(url('image.jpg'), blur(2px));
}
.class {
background: url(image.jpg), -webkit-filter(url('image.jpg'), blur(2px));
background: url(image.jpg), filter(url('image.jpg'), blur(2px));
}