summaryrefslogtreecommitdiff
path: root/testsuite/css/parser/transition-delay.css
blob: 751486f85fe1c4994d158df1f49d62934459f1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
a {
  transition-delay: initial;
}

b {
  transition-delay: inherit;
}

c {
  transition-delay: unset;
}

d {
  transition-delay: 0s;
}

e {
  transition-delay: 5s;
}

f {
  transition-delay: 5ms;
}

g {
  transition-delay: 5ms, 5s;
}