summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/ua-style-sheet-margin-5.html
blob: b9f22c7ff193029fd8a33b8d5fb63493495bcda3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for logical margins on h[456] elements in the UA style sheet</title>
<style>
.v-rl { writing-mode: vertical-rl; }
.ltr, .rtl, .v-rl { border: 1px solid blue; }
h4, h5, h6 { font-size: 16px; border: 1px solid purple; }
</style>
<div class=ltr>
  <h4>Heading 4</h4>
  <h5>Heading 5</h5>
  <h6>Heading 6</h6>
</div>
<div class=rtl dir=rtl>
  <h4>Heading 4</h4>
  <h5>Heading 5</h5>
  <h6>Heading 6</h6>
</div>
<div class=v-rl>
  <h4>Heading 4</h4>
  <h5>Heading 5</h5>
  <h6>Heading 6</h6>
</div>