Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text-decor/text-decoration-propagation-dynamic-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Test: Dynamic text-decoration propagation</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="reference/text-decoration-propagation-dynamic-001-ref.html">
<style>
div { text-decoration: none }
div.restyled { text-decoration: underline }
</style>
<div>
<span><b>Should be underlined</b></span>
</div>
<script>
document.body.offsetTop;
document.querySelector('div').classList = "restyled";
</script>