blob: 52fa9b97b66acf4673eb6da1d334ba9e0b1e17bc (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Flexbox: align-items: center/flex-end and bottom padding.</title>
<link rel="stylesheet" href="support/flexbox.css" >
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#align-items-property">
<meta name="assert" content="This test ensures that flexbox containers with 'align-items: center|flex-end' and 'overflow: auto/scroll' have no extra bottom padding."/>
<style>
.flexbox {
overflow: auto;
height: 50px;
width: 50px;
background-color: red;
position: relative;
}
.vertical-padding {
padding-top: 5px;
padding-bottom: 10px;
background-color: lime;
}
.vertical-border {
border-top: 2px solid black;
border-bottom: 8px solid lightblue;
}
.flexbox > div {
width: 100%;
height: 100px;
background-color: green;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<script>
window.onload = function() {
checkLayout('.flexbox');
// Make failures more obvious by showing the red background that should have been clipped.
Array.prototype.forEach.call(document.querySelectorAll(".flexbox"), function(element) {
element.scrollTop = 1000;
});
};
</script>
</head>
<body>
<div id=log></div>
<div class="flexbox align-items-flex-end" data-expected-scroll-height="50">
<div></div>
</div>
<div class="flexbox align-items-flex-end" data-expected-scroll-height="150">
<div></div>
<div style="position: absolute; left: 0; top: 50px;"></div>
</div>
<div class="flexbox align-items-center" data-expected-scroll-height="75">
<div></div>
</div>
<div class="flexbox" data-expected-scroll-height="100">
<div></div>
</div>
<div class="flexbox wrap-reverse" data-expected-scroll-height="200">
<div></div>
<div></div>
</div>
<div class="flexbox align-items-flex-end vertical-padding" data-expected-scroll-height="65">
<div></div>
</div>
<div class="flexbox align-items-flex-end vertical-padding vertical-border" data-expected-scroll-height="65">
<div></div>
</div>
<div class="flexbox align-items-center vertical-padding" data-expected-scroll-height="90">
<div></div>
</div>
<div class="flexbox vertical-padding" data-expected-scroll-height="115">
<div></div>
</div>
<div class="flexbox vertical-padding vertical-border" data-expected-scroll-height="115">
<div></div>
</div>
<div class="flexbox wrap-reverse vertical-padding" data-expected-scroll-height="215">
<div></div>
<div></div>
</div>
</body>
</html>
|