gtk2/testsuite/css/parser/animation-iteration-count.ref.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

28 lines
314 B
CSS

a {
animation-iteration-count: initial;
}
b {
animation-iteration-count: inherit;
}
c {
animation-iteration-count: unset;
}
d {
animation-iteration-count: 1;
}
e {
animation-iteration-count: 1, 2, 3;
}
f {
animation-iteration-count: infinite;
}
g {
animation-iteration-count: 1, infinite, 2;
}