transition-properties-not-animatable.html (886B)
1 <!DOCTYPE html> 2 <link rel=author href="mailto:jarhar@chromium.org"> 3 <link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-duration-property"> 4 <link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-delay-property"> 5 <link rel="help" href="https://www.w3.org/TR/css-transitions-1/#transition-property-property"> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 <script src="/css/support/interpolation-testcommon.js"></script> 9 10 <body> 11 <script> 12 test_not_animatable({ 13 property: 'transition-duration', 14 from: '1s', 15 to: '2s', 16 underlying: '0s', 17 }); 18 19 test_not_animatable({ 20 property: 'transition-delay', 21 from: '1s', 22 to: '2s', 23 underlying: '0s', 24 }); 25 26 test_not_animatable({ 27 property: 'transition-property', 28 from: 'color', 29 to: 'background-color', 30 underlying: 'all', 31 }); 32 </script>