summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/alignment/grid-baseline-001.html
blob: ef8c0e4d3403f6aab952ae844d84490d7e569055 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html>
<title>CSS Grid: Grid container baseline</title>
<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid/#grid-baselines">
<link rel="help" href="https://crbug.com/234191">
<link rel="match" href="references/grid-baseline-001-ref.html">
<meta name="assert" content="Check the first baselines of a grid container."/>

<style>
body {
    margin: 0;
}
.inline-grid {
    display: inline-grid;
    background-color: lightgrey;
    margin-top: 5px;
    grid-auto-flow: column;
}
.grid {
    display: grid;
    background-color: grey;
    margin-top: 10px;
    grid-auto-flow: column;
}
.empty {
    border-style: solid;
    border-width: 5px 0px 10px;
    padding: 2px 0px 4px;
    margin: 10px 0px 20px;
}
.column {
    grid-auto-flow: row;
}
.firstRowFirstColumn {
    grid-column: 1;
    grid-row: 1;
}
.secondRowFirstColumn {
    grid-column: 1;
    grid-row: 2;
}
</style>

<body style="position: relative">

<!-- If any of the grid items whose areas intersect the grid container's first
row/column participate in baseline alignment, the grid container's baseline is
the baseline of those grid items. -->
<div>
before text
<div class="inline-grid" style="grid-auto-rows: 50px;">
    <div style="align-self: end">below</div>
    <div style="align-self: baseline; margin-top: 15px">baseline</div>
    <div style="align-self: start">above</div>
</div>
after text
</div>

<!-- This grid has a baseline item, it's orthogonal but it still participates
in baseline alignment. -->
<div>
before text
<div class="inline-grid" style="grid-auto-rows: 40px">
    <div style="align-self: end">below</div>
    <div style="align-self: baseline; margin-top: 20px; writing-mode: vertical-rl"></div>
    <div style="align-self: start">above</div>
</div>
after text
</div>

<div>
before text
<div class="inline-grid">
    <h2>h2 baseline</h2>
    <div>above</div>
</div>
after text
</div>

<div>
before text
<div class="inline-grid">
    <div>baseline</div>
    <h2>h2 below</h2>
</div>
after text
</div>

<!-- If the first grid item has an orthogonal baseline, use the synthesized
baseline (bottom of the content box of the first item). -->
<div>
should align with the middle
<div class="inline-grid" style="width: 40px; height: 40px">
    <div style="writing-mode: vertical-rl; height: 20px; width: 40px; border-bottom: 1px solid black"></div>
</div>
of the grey box
</div>

<!-- If there are no griditems, align to the bottom of the margin box. -->
<div>
should align below the bottom
<div class="empty inline-grid" style="width: 30px; height: 30px">
</div>
of the black line
</div>

<div>
should align with the bottom
<div class="inline-grid" style="width: 40px; height: 40px;">
    <div style="width: 20px; height: 20px; border: 5px solid black; background: red;"></div>
</div>
of the red box
</div>

<!-- column-axis test cases. -->
<div>
before text
<div class="inline-grid column">
    <div>baseline</div>
    <div>below</div>
</div>
after text
</div>

<!-- If the first grid item has an orthogonal baseline, use the synthesized
baseline (bottom of the border box of the first item). -->
<div>
should align with the middle
<div class="inline-grid column" style="width: 40px; height: 40px;">
    <div style="writing-mode: vertical-rl; width: 40px; height: 20px; border-bottom: 1px solid black"></div>
    <div style="writing-mode: vertical-rl; width: 40px; height: 19px"></div>
</div>
of the grey box
</div>

<!-- More tests on the right side of the page. -->
<div style="position: absolute; top: 0; left: 400px; width: 360px">

<!-- Ignore absolutely positioned grid items. -->
<div>
before text
<div class="inline-grid">
    <div style="position: absolute">absolute</div>
    <div style="margin-top: 30px">baseline</div>
</div>
after text
</div>

<!-- We don't participate in baseline alignment if there's an auto margin. -->
<div>
before text
<div class="inline-grid" style="grid-auto-rows: 40px;">
    <div>baseline</div>
    <div style="align-self: baseline; margin-top: auto">below</div>
</div>
after text
</div>

<div>
before text
<div style="display: inline-block">
<div class="inline-grid" style="height: 40px;">
    <div>above</div>
    <div style="align-self: baseline; margin-top: 10px">baseline</div>
    <div>above</div>
</div>
after
</div>
text
</div>

<!-- The spec is a little unclear what should happen here. For now,
align to the last line box. -->
<div>
    before text
    <div style="display: inline-block">
        <div class="grid" style="height: 30px;">
            baseline
        </div>
    </div>
    after text
</div>

<table style="background-color: lightgrey; margin-top: 5px">
<tr style="height: 50px">
  <td style="vertical-align: bottom">bottom</td>
  <td style="vertical-align: baseline">baseline</td>
  <td style="vertical-align: top">top</td>
  <td style="vertical-align: baseline"><div class="grid">
    <h2>h2 baseline</h2>
    <div>above</div>
  </div></td>
</table>

<!-- If a box contributing a baseline has a scrollbar, the box must be treated
as being in its initial scroll position when computing the baseline. -->
<div>
before text
<div id="grid-with-scrollbar" class="inline-grid" style="height: 65px; width: 150px">
    <div id="griditem-with-scrollbar" style="align-self: baseline; padding-top: 15px; height: 50px; overflow-y: scroll;">
        The baseline is based on<br>
        the non-scrolled position;<br>
        this won't line up.
    </div>
</div>
after text
</div>

</div>

<script>
document.getElementById("griditem-with-scrollbar").scrollTop = 999;
document.getElementById("grid-with-scrollbar").style.width = "auto";
</script>

</body>
</html>