gtk2/testsuite/css/parser/animation-timing-function.css
Matthias Clasen ef71eabfc5 Add parser tests for animation properties
This adds tests for animation-name, animation-duration,
animation-timing-function, animation-iteration-count,
animation-direction, animation-play-state, animation-delay
and animation-fill-mode.
2015-12-22 22:29:38 -05:00

36 lines
490 B
CSS

a {
animation-timing-function: initial;
}
b {
animation-timing-function: inherit;
}
c {
animation-timing-function: unset;
}
d {
animation-timing-function: ease;
}
e {
animation-timing-function: ease, linear, ease-in, ease-out, ease-in-out, step-start, step-end;
}
f {
animation-timing-function: cubic-bezier(0,0.25,1,2.7);
}
g {
animation-timing-function: steps(3);
}
h {
animation-timing-function: steps(5,start);
}
i {
animation-timing-function: steps(7,end);
}