text-decoration-thickness-single2.html (624B)
1 <!DOCTYPE html> 2 <html> 3 <title>Test case for text-decoration-thickness</title> 4 <meta name="assert" content="thick underline should show on short inline content"> 5 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-box-trim"> 6 <link rel="mismatch" href="reference/text-decoration-thickness-single2-notref.html"> 7 <style> 8 div { 9 text-decoration: underline; 10 font: 20px/1 Monospace; 11 color: transparent; 12 text-decoration-thickness: 20px; 13 text-decoration-color: green; 14 } 15 </style> 16 <body> 17 <p>Test passes if the short inline content has a thick green underline.</p> 18 <div>X</div> 19 </body> 20 </html>