discrete-no-interpolation.html (1036B)
1 <!DOCTYPE html> 2 <meta name=timeout content=long> 3 <link rel=author href="mailto:jarhar@chromium.org"> 4 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441"> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/css/support/interpolation-testcommon.js"></script> 8 9 <body> 10 <script> 11 test_no_interpolation({ 12 property: 'text-decoration-line', 13 from: 'initial', 14 to: 'underline' 15 }); 16 17 test_no_interpolation({ 18 property: 'text-decoration-style', 19 from: 'initial', 20 to: 'dashed' 21 }); 22 23 test_no_interpolation({ 24 property: 'text-decoration-thickness', 25 from: 'initial', 26 to: '123px' 27 }); 28 29 test_no_interpolation({ 30 property: 'text-emphasis-position', 31 from: 'initial', 32 to: 'under right' 33 }); 34 35 test_no_interpolation({ 36 property: 'text-emphasis-style', 37 from: 'initial', 38 to: 'dot' 39 }); 40 41 test_no_interpolation({ 42 property: 'text-underline-position', 43 from: 'initial', 44 to: 'under' 45 }); 46 </script>