Given the string b{font-family:"a";src:url("b";)}@font-face{font-family:"a";src:url("b";)}
Expected output is:
b {
font-family: "a";
src: url("b";);
}
@font-face {
font-family:"a";
src:url("b");
}
Actual output:
b {
font-family: "a";
src: url("b";);
}
@font-face {
font-family:"a";src:url("b");
}
The src property should wrap. Oddly it does work if @font-face is first.