gtk2/testsuite/css/parser/transition-delay.ref.css
Matthias Clasen 8f44383253 Add a parser tests for transition properties
This adds tests for transition-property, transition-delay
and transition-timing-function.
2015-12-22 22:29:38 -05:00

28 lines
234 B
CSS

a {
transition-delay: initial;
}
b {
transition-delay: inherit;
}
c {
transition-delay: unset;
}
d {
transition-delay: 0;
}
e {
transition-delay: 5s;
}
f {
transition-delay: 5ms;
}
g {
transition-delay: 5ms, 5s;
}