summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/alignment/grid-container-baseline-001.html
blob: aa6e77871a4f4fb9fb6f0bf8d8ea80dc4e0937cc (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Grid container baseline</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-baselines">
<meta name="assert" content="Grid container baseline should match the element with 'align-self: baseline' in the first row, even if it's an orthogonal element.">
<style>
.wrapper {
  position: relative;
  margin: 10px;
  line-height: 0;
}

.grid {
  display: inline-grid;
  grid-auto-flow: column;
  background: grey;
}

.i1 {
  width: 150px;
  height: 100px;
  background: magenta;
}

.i2 {
  align-self: baseline;
  width: 75px;
  height: 50px;
  background: cyan;
}

.i3 {
  width: 100px;
  height: 75px;
  background: yellow;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('.wrapper')">

<div class="wrapper" style="writing-mode: horizontal-tb;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-y="40"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" data-offset-y="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-y="40"></div>
</div>

<div class="wrapper" style="writing-mode: horizontal-tb;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-y="40"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" style="writing-mode: vertical-lr;" data-offset-y="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-y="40"></div>
</div>

<div class="wrapper" style="writing-mode: horizontal-tb;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-y="40"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" style="writing-mode: vertical-rl;" data-offset-y="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-y="40"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-lr; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" data-offset-x="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-lr; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" style="writing-mode: horizontal-tb;" data-offset-x="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-lr; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" data-offset-x="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-lr; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" style="writing-mode: horizontal-tb;" data-offset-x="0"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="0"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-rl; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" data-offset-x="75"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-rl; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" style="writing-mode: horizontal-tb;" data-offset-x="75"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-rl; text-orientation: sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" data-offset-x="75"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
</div>

<div class="wrapper" style="writing-mode: vertical-rl; text-orientation:  sideways;">
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
  <div class="grid">
    <div class="i1"></div>
    <div class="i2" style="writing-mode: horizontal-tb;" data-offset-x="75"></div>
    <div class="i3"></div>
  </div>
  <div style="display: inline-block; width: 20px; height: 10px; background: black" data-offset-x="75"></div>
</div>

</body>