text-decoration-propagation-dynamic-001.html (577B)
1 <!doctype html> 2 <title>CSS Test: Dynamic text-decoration propagation</title> 3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 4 <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#line-decoration"> 5 <link rel="match" href="reference/text-decoration-propagation-dynamic-001-ref.html"> 6 <style> 7 div { text-decoration: none } 8 div.restyled { text-decoration: underline } 9 </style> 10 <div> 11 <span><b>Should be underlined</b></span> 12 </div> 13 <script> 14 document.body.offsetTop; 15 document.querySelector('div').classList = "restyled"; 16 </script>