gecko/layout/reftests/text-decoration/inline-baseline-quirks.html
Vitor Menezes 1eb945fbb6 Bug 223764: Inlines inside inlines that draw text-decorations shouldn't alter the baseline. (r=dbaron)
We add a baseline field to nsInlineFrame and modify
nsLineLayout::BeginSpan to take a pointer to a baseline to update. This
also means that nsFirstLetterFrame no longer needs to update its own
baseline, and instead should just pass its own field along.
2011-08-03 11:30:58 -07:00

9 lines
257 B
HTML

<html>
<title>test for bug 223764 (Quirks)</title>
<body>
<p style="overflow: hidden; padding-bottom: 20px;">
<span style="font-size: 100px; text-decoration:underline"><span style="font-size: 20px">hello</span></span>
</p>
</body>
</html>