blob: 09223424dd3b42562852e59ff1982d75673b8fba (
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
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Writing mode</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
<link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#orthogonal-flows">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="In the face of multiple levels of orthogonal flow nesting, children's sizes propagate up to parents.">
<style>
body > div {
background: green;
writing-mode: vertical-lr;
}
div > div { writing-mode: horizontal-tb; }
div > div > div {
writing-mode: vertical-rl;
height: 100px;
font-size: 100px;
line-height: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div>
<div><div> </div></div>
</div>
|