haikuwebkit/LayoutTests/fast/table/unbreakable-images-quirk.html

49 lines
748 B
HTML

<style>
img { background-color: lightblue; width: 20px; height: 50px; }
table {width: 15px; background: silver; }
</style>
No line break
<TABLE>
<TR>
<TD>
<img>loremipsum<img>
</TD>
</TR>
</TABLE>
<hr>
No line break
<TABLE>
<TR>
<TD>
loremipsum<img>
</TD>
</TR>
</TABLE>
<hr>
Line break after the "a".
<TABLE>
<TR>
<TD>
a loremipsum<img>
</TD>
</TR>
</TABLE>
<hr>
Line break after the "a".
<TABLE>
<TR>
<TD>
a <img>loremipsum<img>
</TD>
</TR>
</TABLE>
<hr>
Line break after "wideword".
<TABLE>
<TR>
<TD>
wideword <img>loremipsum<img>
</TD>
</TR>
</TABLE>