text-decoration-thickness-non-inherit.html (825B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Test case for text-decoration-thickness inheritance</title> 6 <meta name="assert" content="text-decoration-thickness: should not be inherited"> 7 <link rel="author" title="Joonghun Park" href="mailto:pjh0718@gmail.com"> 8 <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-thickness-property"> 9 <link rel="match" href="reference/text-decoration-thickness-non-inherit-ref.html"> 10 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 11 <style> 12 p { text-decoration-thickness: 20px; } 13 span { text-decoration-line: underline; text-decoration-color: black; } 14 </style> 15 </head> 16 <body> 17 <p><span>Test passes if this text decoration underline is not 20px thick.</span></p> 18 </body> 19 </html>