summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1103613-1.html
blob: b7b40ba23472ec611323b5c195c3bf088105d4ef (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
#outer {
  height: 200px;
  width: 300px;
  margin: 10px;
  border: 50px solid #ddd;
}
#test {
  writing-mode: vertical-lr;
  margin: 10px;
}
</style>
</head>

<body>
<div id="outer">
<div id="test">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
</div>

</body>
</html>