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

Bug in merging of blocks #223

Closed
eGavr opened this issue Jan 30, 2014 · 0 comments
Closed

Bug in merging of blocks #223

eGavr opened this issue Jan 30, 2014 · 0 comments

Comments

@eGavr
Copy link

eGavr commented Jan 30, 2014


a {
 color:red;
}

a {
 background: 0 0;
}

b {
 color:red;
}

b {
 background:0 0;
}

I have received


a{color:red;background:0 0}b{color:red;background:0 0}

but I suppose it should be something like this


a,b{color:red;background:0 0}

Or this test


a, b {
 color:red;
 background:0, 0
}


b {
 color:red;
}


is minimized to


a,b{color:red;background:0,0}b{color:red}

but can be minimized to


a,b{color:red;background:0,0}

Another test concerning this bug

.test {
color: red}

.empty {}

.test {
 height:100px
}

is minimized to


.test{color:red}.test{height:100px}

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

No branches or pull requests

1 participant