Add a parser tests for transition properties

This adds tests for transition-property, transition-delay
and transition-timing-function.
This commit is contained in:
Matthias Clasen
2015-12-21 23:28:48 -05:00
parent 2b6ab1b8bd
commit 8f44383253
7 changed files with 182 additions and 0 deletions

View File

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