summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1588954-ref.html
blob: ebd728d5ea642c3fba657cdfb2521ac341078b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<style>
#multicol {
  font: 16px/1 sans-serif;
  height: 10px;
  column-width: 30px;
  column-fill: auto;
  border: 1px solid gray;
}
.box {
  writing-mode: vertical-rl;
  width: 10px;
  height: 20px;
  border: 1px solid blue;
}
</style>

<div id="multicol">
  <span>a</span>
  <main class="box"></main>
</div>