swc/crates/swc_css_prefixer/tests/fixture/element/output.defaults-not-ie-11.css
2022-07-20 12:12:40 +09:00

14 lines
488 B
CSS

div {
background: -moz-element(#id);
background: element(#id);
}
div {
background: url(image.jpg), -moz-element(#id);
background: url(image.jpg), element(#id);
}
div {
background: -webkit-image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
background: image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), -moz-element(#id);
background: image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
}