Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / unbreakable-images-quirk.html
blob6533f203ffd159dfaf25e220aad4e9cfbc60f37b
1 <style>
2 img { background-color: lightblue; width: 20px; height: 50px; }
3 table {width: 15px; background: silver; }
4 </style>
5 No line break
6 <TABLE>
7 <TR>
8 <TD>
9 <img>loremipsum<img>
10 </TD>
11 </TR>
12 </TABLE>
13 <hr>
14 No line break
15 <TABLE>
16 <TR>
17 <TD>
18 loremipsum<img>
19 </TD>
20 </TR>
21 </TABLE>
22 <hr>
23 Line break after the "a".
24 <TABLE>
25 <TR>
26 <TD>
27 a loremipsum<img>
28 </TD>
29 </TR>
30 </TABLE>
31 <hr>
32 Line break after the "a".
33 <TABLE>
34 <TR>
35 <TD>
36 a <img>loremipsum<img>
37 </TD>
38 </TR>
39 </TABLE>
40 <hr>
41 Line break after "wideword".
42 <TABLE>
43 <TR>
44 <TD>
45 wideword <img>loremipsum<img>
46 </TD>
47 </TR>
48 </TABLE>