summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-grid/grid-item-intrinsic-ratio-normal-005-ref.html
blob: d7a9b2804481d707a5fae0016b1df4ded30e47bf (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
<!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
  <meta charset="utf-8">
  <title>Reference: ratio-preserving 'normal' stretch of image with zero ratio</title>
  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1315857">
  <style type="text/css">
body,html { color:black; background:white; font:16px/1 monospace; padding:0; margin:0; }

.grid {
  display: grid;
  float: left;
  grid: auto-flow 10px / 10px 30px 10px 30px 10px 30px 10px 30px auto auto auto auto;
  grid-gap: 5px;
  border:1px solid;
}
img:nth-child(1n) { background: blue; }
img:nth-child(2n) { background: grey; }
img:nth-child(3n) { background: tan; }
img:nth-child(4n) { background: black; }
img {
  width: 20px;
  border: 1px solid;
}
.jend { justify-self: end; }
.aend { align-self: end; }
.end { justify-self: end; align-self: end; }
  </style>
</head>
<body>

<div class="grid sz">
<img>
<img>
<img class="jend">
<img class="jend">
<img class="aend">
<img class="aend">
<img class="end">
<img class="end">
<img>
<img class="jend">
<img class="aend">
<img class="end">
</div>

<div class="grid sz t2">
<img>
<img>
<img class="jend">
<img class="jend">
<img class="aend">
<img class="aend">
<img class="end">
<img class="end">
<img>
<img class="jend">
<img class="aend">
<img class="end">
</div>

<div class="grid">
<img>
<img>
<img class="jend">
<img class="jend">
<img class="aend">
<img class="aend">
<img class="end">
<img class="end">
</div>

<div class="grid" style="grid:auto/auto auto">
<img>
<img class="jend">
<img class="aend">
<img class="end">
</div>

<div class="grid" style="grid:minmax(auto,30px) 30px/auto auto">
<img>
<img class="jend">
<img class="aend">
<img class="end">
</div>

<script>
var url = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="0px" height="16px"><circle cx="50%" cy="50%" r="50%" fill="pink"/></svg>'
var imgSizes =
[
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
  ['20px', '16px'],
];
var imgs = document.querySelectorAll('img');
for (var i = 0; i < imgs.length; ++i) {
  var img = imgs[i];
  img.style.width = imgSizes[i][0];
  img.style.height = imgSizes[i][1];
  img.src = url;
}
</script>


</body>
</html>