tbela99 / css

A CSS parser and minifier and sourcemap generator written in PHP
Other
14 stars 1 forks source link

keyframe rule must preserve the '%' when the selector is 0% #98

Closed tbela99 closed 2 years ago

tbela99 commented 2 years ago

@keyframes identifier {
    0% {
        top: 0;
        left: 0;
    }
    0%, 100% {
        top: 0;
        left: 0;
    }
}

is incorrectly parsed as

@keyframes identifier {
    0 {
        top: 0;
        left: 0;
    }
    0, 100% {
        top: 0;
        left: 0;
    }
}