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
Currently, libsass fails to parse a url()-style string with quotes when it appears in an unknown directive. For example:
url()
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
produces:
Error: Invalid CSS after '...pace url("foo");': expected "{", was "" on line 1 of stdin >> @namespace url("foo"); --------------------^
See sass/sass#2188
The text was updated successfully, but these errors were encountered:
Add todo spec test for libsass issue 2243
17c2951
sass/libsass#2243
52c1a36
Fix parsing of url with quoted argument
1a3baa7
Fixes sass#2243
Activate specs for issue 2243
0330481
This PR activates specs for sass/libsass#2243
0576927
Fixes #2243
5dc3b43
mgreter
No branches or pull requests
Currently, libsass fails to parse a
url()
-style string with quotes when it appears in an unknown directive. For example:produces:
See sass/sass#2188
The text was updated successfully, but these errors were encountered: