Skip to content

Commit

Permalink
adding a unit test to cover the issue #510 case
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabil Koroghli committed Jul 21, 2016
1 parent 1ee5c30 commit 47f1017
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/dotless.Test/Specs/Css3Fixture.cs
Expand Up @@ -259,6 +259,26 @@ public void KeyFrameDirective4()
AssertLessUnchanged(input);
}

[Test]
public void KeyFrameDirective5()
{
var input = @"
@keyframes rotate-this {
0%, 1%, 10%, 80%, to {
}
50% {
}
}
";

var expected = @"
@keyframes rotate-this {
}
";
AssertLess(input, expected);
}

[Test]
public void MozTransform()
{
Expand Down

0 comments on commit 47f1017

Please sign in to comment.