text-justify-interpolation.html (1215B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>text-justify interpolation</title> 6 <link rel="author" title="Kiet Ho" href="mailto:tho22@apple.com"> 7 <link rel="help" href="https://drafts.csswg.org/css-text/#text-justify-property"> 8 <meta name="assert" content="text-justify supports discrete animation"> 9 <script src="/resources/testharness.js"></script> 10 <script src="/resources/testharnessreport.js"></script> 11 <script src="/css/support/interpolation-testcommon.js"></script> 12 </head> 13 <body> 14 <script> 15 test_no_interpolation({ 16 property: 'text-justify', 17 from: 'auto', 18 to: 'inter-word' 19 }); 20 21 test_no_interpolation({ 22 property: 'text-justify', 23 from: 'auto', 24 to: 'inter-character' 25 }); 26 27 test_no_interpolation({ 28 property: 'text-justify', 29 from: 'inter-character', 30 to: 'distribute' 31 }); 32 33 test_no_interpolation({ 34 property: 'text-justify', 35 from: 'inter-word', 36 to: 'distribute' 37 }); 38 39 test_no_interpolation({ 40 property: 'text-justify', 41 from: 'distribute', 42 to: 'none' 43 }); 44 </script> 45 </body> 46 </html>