summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/forms/radio-appearance-native-vertical-lr-baseline.optional-ref.html
blob: 6fca0762f41d3b0dd7b15b18ef9c5fe318e31ed7 (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
<!DOCTYPE html>
<title>Test baseline alignment of radio buttons in vertical-lr writing mode.</title>
<meta charset="utf-8">
<style>

label {
    color: red;
    background-color: red;
    margin-top: -30px;
}

input {
    visibility: hidden;
}

</style>
<p>The radio button should be center-aligned with the label text since it is non-alphabetic.</p>
<div style="writing-mode: vertical-lr">
    <input type="radio" id="radio" checked>
    <label for="radio">こんにちわ</label>
</div>

<br>

<p>The radio button should be left-aligned with the label text since it has text-orientation sideways.</p>
<div style="writing-mode: vertical-lr; text-orientation: sideways;">
  <input type="radio" id="radio" checked>
  <label for="radio">Baseline</label>
</div>