Skip to content
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

Excessive whitespace IE filter syntax #1107

Closed
xzyfer opened this issue Apr 15, 2015 · 1 comment · Fixed by #1194
Closed

Excessive whitespace IE filter syntax #1107

xzyfer opened this issue Apr 15, 2015 · 1 comment · Fixed by #1194

Comments

@xzyfer
Copy link
Contributor

xzyfer commented Apr 15, 2015

I've marked this as regression since the behaviour has changed negative (for the user) but since it's only whitespace I've assigned it 3.2.1.

.foo {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
        src="#{foo}",
        sizingMethod='scale');
}

Ruby Sass

.foo {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src="foo", sizingMethod='scale'); }

Libsass 3.1.0

.foo {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
        src="foo",
        sizingMethod='scale'); }

Libsass 3.2.0-beta.5

.foo {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(         src="foo",         sizingMethod='scale'); }

Spec added sass/sass-spec#330

@xzyfer
Copy link
Contributor Author

xzyfer commented May 12, 2015

Fixed by #1194

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants