We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the string b{font-family:"a";src:url("b";)}@font-face{font-family:"a";src:url("b";)}
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.
src
The text was updated successfully, but these errors were encountered:
Let's take a look at the code to see what's happening here, 'cause I'm getting that odd output too...
Sorry, something went wrong.
No branches or pull requests
Given the string
b{font-family:"a";src:url("b";)}@font-face{font-family:"a";src:url("b";)}
Expected output is:
Actual output:
The
src
property should wrap. Oddly it does work if @font-face is first.The text was updated successfully, but these errors were encountered: