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

Parsing bug #9

Open
thierryk opened this issue Jun 28, 2014 · 0 comments
Open

Parsing bug #9

thierryk opened this issue Jun 28, 2014 · 0 comments

Comments

@thierryk
Copy link

It seems this tool demonstrates more or less the same parsing bug as oldIE (IE 6/7).

It replaces these 2 rules:

body {
    background: aliceblue;
}
body,{
    background: indianred;
    _background: teal;
}

with this one:

body {
    background: #f0f8ff;
    background: #cd5c5c;
    _background: teal;
}

Which makes all modern browsers see the IE7 declaration.
Note that if there is white space between , and { then the rules are properly minified (meaning the rule is not dropped but written as-is.)

This is a test page that shows this parsing bug.

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