We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you run this:
$minifier = new \tubalmartin\CssMin\Minifier(); $minifier->run('#id {');
Then Minifier::processRuleBodies() will get itself into an infinite while-loop, because it does not consider that $blockEndPos may be false.
Minifier::processRuleBodies()
$blockEndPos
false
Expected behavior is that an exception should be thrown.
The text was updated successfully, but these errors were encountered:
Make sure $blockEndPos isn't false
62d8058
Fixes tubalmartin#58
Successfully merging a pull request may close this issue.
If you run this:
Then
Minifier::processRuleBodies()
will get itself into an infinite while-loop, because it does not consider that$blockEndPos
may befalse
.Expected behavior is that an exception should be thrown.
The text was updated successfully, but these errors were encountered: