mirror of
https://github.com/servo/servo.git
synced 2025-06-29 11:33:39 +01:00
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>writing mode:vertical-lr, select, selected item</title>
|
|
<link rel="author" title="Richard Ishida" href="mailto:ishida@w3.org"/>
|
|
<link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#block-flow"/>
|
|
<meta name="flags" content="should"/>
|
|
<meta name="assert" content="writing-mode:vertical-lr will display a select box vertically, and the selected item will be displayed vertically."/>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: 'webfont';
|
|
src: url('/fonts/noto/NotoSansMongolian-regular.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
select { font-family: webfont; font-size: 24px; }
|
|
.test { text-align: center; vertical-align: middle; width: 100%; }
|
|
</style>
|
|
<!-- this is the test -->
|
|
<style type="text/css">
|
|
.test { writing-mode: vertical-lr; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p class="instructions">Test passes if the displayed selection area is vertical and the text inside it has default vertical settings.</p>
|
|
<div class="test">
|
|
<select>
|
|
<option value="1">ᠮᠤᠩᠭᠤᠯ item 1 ᠤᠯᠤᠰ</option>
|
|
<option value="2">ᠮᠤᠩᠭᠤᠯ item 2 ᠤᠯᠤᠰ</option>
|
|
<option value="3">ᠮᠤᠩᠭᠤᠯ item 3 ᠤᠯᠤᠰ</option>
|
|
</select>
|
|
</div>
|
|
</body>
|
|
</html>
|