summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-animations/transition-properties-not-animatable.html
blob: 288487b48998772bc145c3a28c8fef329b4939ab (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
28
29
30
31
32
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-duration-property">
<link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-delay-property">
<link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-property-property">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/interpolation-testcommon.js"></script>

<body>
<script>
test_not_animatable({
  property: 'transition-duration',
  from: '1s',
  to: '2s',
  underlying: '0s',
});

test_not_animatable({
  property: 'transition-delay',
  from: '1s',
  to: '2s',
  underlying: '0s',
});

test_not_animatable({
  property: 'transition-property',
  from: 'color',
  to: 'background-color',
  underlying: 'all',
});
</script>