summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1278007.html
blob: f4e9e40da110e4d4b14f05778146c0deeb67d227 (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
<!DOCTYPE HTML>
<html><head>
  <meta charset="utf-8">
  <title></title>
  <style type="text/css">
.grid {
  display: grid;
}

.sfb { align-self:baseline; }
.slb { align-self:last baseline; }

.vl { writing-mode: vertical-lr; }

</style>
</head>
<body>

<div class="grid"><input class="slb"></div>
<div class="grid"><input class="sfb"></div>

<div class="grid"><input class="slb vl"></div>
<div class="grid"><input class="sfb vl"></div>

</body>
</html>