summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/unbreakable-images-quirk.html
blob: 6533f203ffd159dfaf25e220aad4e9cfbc60f37b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<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>