hyphen-no-interpolation.html (960B)
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 <link rel=help href="https://drafts.csswg.org/css-text-4/#propdef-hyphenate-character"> 5 <link rel=help href="https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-chars"> 6 <link rel=help href="https://drafts.csswg.org/css-text/#hyphens-property"> 7 <link rel=help href="https://drafts.csswg.org/css-transitions-2/#transition-property-property"> 8 <script src="/resources/testharness.js"></script> 9 <script src="/resources/testharnessreport.js"></script> 10 <script src="/css/support/interpolation-testcommon.js"></script> 11 12 <body> 13 <script> 14 test_no_interpolation({ 15 property: 'hyphenate-character', 16 from: 'initial', 17 to: '"e"' 18 }); 19 20 test_no_interpolation({ 21 property: 'hyphenate-limit-chars', 22 from: 'initial', 23 to: '10' 24 }); 25 26 test_no_interpolation({ 27 property: 'hyphens', 28 from: 'initial', 29 to: 'auto' 30 }); 31 </script>