text-decoration-style-recalc.html (602B)
1 <!doctype html> 2 <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-decoration-style-property"> 3 <link rel="match" href="reference/text-decoration-style-recalc-ref.html"> 4 <style> 5 div { 6 font-size: 50px; 7 text-decoration: underline solid green; 8 } 9 </style> 10 <script> 11 onload = function() { 12 target.style.textDecorationStyle = "dashed"; 13 }; 14 </script> 15 <p>Test that changes in text-decoration-style are recalculated correctly. PASS 16 if the text below has a dashed green underline, and not a solid green underline.</p> 17 <div id="target"> 18 Filler text 19 </div>