discrete-no-interpolation.html (722B)
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: 'border-left-style', 12 from: 'initial', 13 to: 'dotted' 14 }); 15 16 test_no_interpolation({ 17 property: 'border-right-style', 18 from: 'initial', 19 to: 'dotted' 20 }); 21 22 test_no_interpolation({ 23 property: 'border-top-style', 24 from: 'initial', 25 to: 'dotted' 26 }); 27 28 test_no_interpolation({ 29 property: 'border-bottom-style', 30 from: 'initial', 31 to: 'dotted' 32 }); 33 </script>