summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1089388-2-ref.html
blob: 34fc1d548fb99458326d9ac1026f1a589b015525 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.v-lr { writing-mode:vertical-lr;  }
.v-rl { writing-mode:vertical-rl; }

div {
  width: 300px;
  height: 200px;
  background: #ddd;
  margin: 50px;
  text-rendering: optimizeLegibility;
}
</style>
</head>

<body>

<div class="v-rl">
First part of the block.
<i id="test">New text inserted by script, to cause a reflow that slides the following lines.</i>
We will insert enough new content that it wraps onto additional lines.
<br><br>
Here is some more text that follows a forced break.
Observe what happens to it when text is added earlier.
</div>

</body>
</html>