summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/intrinsic-min-width-applies-with-fixed-width.html
blob: 0482f399e1edef23748807ca36c0804b5a5d4636 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<style>
.min-content {
    width: 10px;
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: -ie-min-content;
    min-width: -o-min-content;
    min-width: min-content;
    outline: 2px solid;
    display: -webkit-box;
    -webkit-box-lines: multiple;
}
.max-content {
    width: 10px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: -ie-max-content;
    min-width: -o-max-content;
    min-width: max-content;
    outline: 2px solid;
    display: -webkit-box;
    -webkit-box-lines: multiple;
}
.fit-content {
    width: 10px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: -ie-fit-content;
    min-width: -o-fit-content;
    min-width: fit-content;
    outline: 2px solid;
    display: -webkit-box;
    -webkit-box-lines: multiple;
}
.child {
    width: 20px;
    height: 20px;
    background-color: pink;
}
div {
    display: inline-block;
    line-height: 0;
}
</style>
<script src="../../resources/check-layout.js"></script>

<body onload="checkLayout('body > div')">
<p>Check that min-width intrinsic size still applies if a fixed width is set.</p>

<div class="min-content" data-expected-width=20>
    <div class="child"></div><div class="child"></div>
</div>

<div class="max-content" data-expected-width=40>
    <div class="child"></div><div class="child"></div>
</div>

<div class="fit-content" data-expected-width=40>
    <div class="child"></div><div class="child"></div>
</div>

<div style="width: 30px">
    <div class="fit-content" data-expected-width=30>
        <div class="child"></div><div class="child"></div>
    </div>
</div>

<div style="width: 10px">
    <div class="fit-content" data-expected-width=20>
        <div class="child"></div><div class="child"></div>
    </div>
</div>

</body>