summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1105268-1-min-max-dimensions-ref.html
blob: 90347bc05f003c8fe85fd24cf325f4800399cbff (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.wrapper {
  display: inline-block;
  vertical-align: top;
  margin: 20px;
}
.outer {
  height: 250px;
  width: 200px;
  border: 10px solid #ddd;
}
.inner {
  font: 12px monospace;
  background: yellow;
  overflow: hidden;
}
.test1 {
  width: 180px;
  height: 150px;
}
.test2 {
  width: 150px;
  height: 200px;
}
.lr {
  writing-mode: vertical-lr;
}
.rl {
  writing-mode: vertical-rl;
}
</style>

</head>

<body>

<div class="wrapper">
<div class="outer">
<div class="inner test1 lr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
</div>
</div>

<br>

<div class="wrapper">
<div class="outer">
<div class="inner test2 lr">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
</div>
</div>

</body>
</html>