Status: PASS | Duration: 10ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/linebox/line-height-bleed-001.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Test: Glyphs overflow line box</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height" /> <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" /> <link rel="match" href="line-height-bleed-001-ref.xht" /> <meta name="assert" content="Glyphs bleed out of the box when 'line-height' is less than the content height and the height of the box is not increased." /> <style type="text/css"> #div1 { font: 1in/1em serif; margin-top: 1in; } div div { background: red; line-height: 0; } </style> </head> <body> <p>Test passes if "Filler Text" is completely visible without any clipping and if there is no red.</p> <div id="div1"> <div>Filler Text</div> </div> </body> </html>
/css/CSS2/linebox/line-height-bleed-001-ref.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <style type="text/css"><![CDATA[ div { font: 1in/1 serif; margin-top: 0.5in; } ]]></style> </head> <body> <p>Test passes if "Filler Text" is completely visible without any clipping and if there is no red.</p> <div>Filler Text</div> </body> </html>