summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1083892-1.html
blob: fa7c7a9aa879d657d19efca17dce0e39416f3066 (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>
<title>Bug 1083892</title>
<style>
div {
  width:400px;
  height:400px;
  padding:10px;
  border:1px solid black;
  writing-mode:vertical-lr;
}
p {
  margin: 0;
}
</style>
</head>

<body>
<div>
  <p>This is the first line.
  <p>Line two.
  <p>Third and final line.
</div>
</body>

</html>