-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
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
source maps ignoring commented out lines #771
Comments
This seems not to be fixed. I have the same problem as before. Testcase 1:body {
color: blue;
}
.banner {
color: blue;
} Chrome 39:body: line 1 -> correct Firefox 34:body: line 1 -> correct Testcase 2:// @import "base/reset";
body {
color: blue;
}
.banner {
color: blue;
} Chrome 39:body: line 1 -> not correct (should be 3) Firefox 34:body: line 1 -> not correct (should be 3) |
Are you testing against master? This patch has not made it into an official release yet. |
yes. tested master. |
This issue should (hopefully) be addressed/fixed by #792. |
Hey, i have a problem to get the source maps working.
gives me for the body line 3 which is correct.
gives me for the body line 1 which is false.
It seems that all commented out lines are ignored in calculating the line numbers for the source map.
The text was updated successfully, but these errors were encountered: