swc/crates/swc_css_prefixer/tests/fixture/font-face-format/output.defaults-not-ie-11.css
2022-12-22 01:36:36 +00:00

27 lines
741 B
CSS

@font-face{
src: format("woff");
src: format(woff);
}
@font-face{
src: url(a) format("woff"), url(b) format("svg");
src: url(a) format(woff), url(b) format(svg);
}
@font-face{
src: format("woff"), format("truetype"), format("opentype"), format("woff2"), format("embedded-opentype"), format("collection"), format("svg");
src: format(woff), format(truetype), format(opentype), format(woff2), format(embedded-opentype), format(collection), format(svg);
}
@font-face{
src: format("woff");
src: format(WOFF);
}
@font-face{
src: format("woff");
}
@font-face{
src: url(a) format("woff"), url(b) format("svg");
src: url(a) format("woff"), url(b) format(svg);
}
@font-face{
src: url(a) format("woff"), url(b) format("svg");
}