discrete-no-interpolation.html (927B)
1 <!DOCTYPE html> 2 <link rel=author href="mailto:jarhar@chromium.org"> 3 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script src="/css/support/interpolation-testcommon.js"></script> 7 8 <body> 9 <script> 10 test_no_interpolation({ 11 property: 'background-attachment', 12 from: 'initial', 13 to: 'fixed' 14 }); 15 16 test_no_interpolation({ 17 property: 'background-blend-mode', 18 from: 'initial', 19 to: 'overlay' 20 }); 21 22 test_no_interpolation({ 23 property: 'background-clip', 24 from: 'initial', 25 to: 'content-box' 26 }); 27 28 test_no_interpolation({ 29 property: 'background-origin', 30 from: 'initial', 31 to: 'border-box' 32 }); 33 34 test_no_interpolation({ 35 property: 'background-repeat', 36 from: 'initial', 37 to: 'round' 38 }); 39 40 test_no_interpolation({ 41 property: 'border-image-repeat', 42 from: 'initial', 43 to: 'round' 44 }); 45 </script>