You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just ran into this problem as well. The tests already passed because the codepath with the bug was only run in the browser. I just submitted a pull request fixing the issue: #432
similar to issue #258
I could not reopen therefore I filed a new issue
in less.js 1.1.4 basepath is added to quoted data:uris
working:
url(data:...);
not working:
url('data:...');
url("data:...");
The Problem are the slashes which are not required in data uris as seen in http://en.wikipedia.org/wiki/Data_URI_scheme#CSS .
solution replace line 2320 with
if (!/^(?:https?:\/\/|file:\/\/|data:)?/.test(val.value) && paths.length > 0 && typeof(window) !== 'undefined') {
The text was updated successfully, but these errors were encountered: